mirror of
https://github.com/Harshit-Dhanwalkar/AsciiCam.git
synced 2026-06-15 10:45:13 +02:00
rename file to security_tests.c
This commit is contained in:
parent
9c717cbd86
commit
c0ddc27b5d
2 changed files with 6 additions and 1 deletions
|
|
@ -19,7 +19,7 @@ PLUGIN_TARGETS = $(patsubst filters/%.c,$(BUILDDIR)/%.so,$(PLUGIN_C_SRCS))
|
|||
|
||||
# Security Testing Targets
|
||||
TEST_TARGET = $(BUILDDIR)/security_tests
|
||||
TEST_SRC = ../tests/secutrity_test.c
|
||||
TEST_SRC = ../tests/security_tests.c
|
||||
FILTER_SRCS = filters/edge_detect.c filters/invert.c filters/threshold.c
|
||||
|
||||
.PHONY: all clean plugins test
|
||||
|
|
|
|||
|
|
@ -1,3 +1,8 @@
|
|||
/*
|
||||
Tests for plugins must never corrupt heap or crash due to integer
|
||||
overflow in dimension-based allocations.
|
||||
*/
|
||||
|
||||
#include <check.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdint.h>
|
||||
Loading…
Add table
Add a link
Reference in a new issue