We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2be001 commit eecfa3cCopy full SHA for eecfa3c
companders_fulltest.c
@@ -163,5 +163,6 @@ int main() {
163
test_IIRavgFR();
164
printf("\nTesting IIRavgPower2FR...\n");
165
test_IIRavgPower2FR();
166
+ printf("\n\nAll tests passed!\n\n");
167
return 0;
168
}
makefile
@@ -9,13 +9,14 @@ OBJ = companders.o compandit.o
9
TEST_OBJ = companders.o companders_fulltest.o
10
11
%.o: %.c $(DEPS)
12
- $(CC) -c -o $@ $< $(CFLAGS)
+ $(CC) -c -o $@ $< $(CFLAGS_TEST)
13
14
compandit: $(OBJ)
15
$(CC) -o $@ $^ $(CFLAGS) -lm
16
17
companders_fulltest: $(TEST_OBJ)
18
- $(CC) -o $@ $^ $(CFLAGS_TEST) -lm
+ $(CC) -o $@ $^ $(CFLAGS_TEST) -lm
19
+
20
21
test: companders_fulltest
22
./companders_fulltest
0 commit comments