rename file to security_tests.c

This commit is contained in:
Harshit-Dhanwalkar 2026-06-01 23:26:51 +05:30
parent 9c717cbd86
commit c0ddc27b5d
2 changed files with 6 additions and 1 deletions

View file

@ -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

View file

@ -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>