Bug fixing and detecting wrong parameters

This commit is contained in:
tommyvilo
2023-04-05 17:49:09 +02:00
parent 8e9b86476c
commit 84fbca5798
8 changed files with 109 additions and 40 deletions
+3
View File
@@ -85,6 +85,9 @@ set(TESTS
t_kill.c
t_itimer.c
t_gid.c
# Testing my program
myProg.c
)
foreach(TEST ${TESTS})
+7
View File
@@ -0,0 +1,7 @@
#include <stdio.h>
int main(void)
{
printf("File di test\n");
return 0;
}