Skip to content

Commit eecfa3c

Browse files
committed
updated ci coverage
1 parent d2be001 commit eecfa3c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

companders_fulltest.c

+1
Original file line numberDiff line numberDiff line change
@@ -163,5 +163,6 @@ int main() {
163163
test_IIRavgFR();
164164
printf("\nTesting IIRavgPower2FR...\n");
165165
test_IIRavgPower2FR();
166+
printf("\n\nAll tests passed!\n\n");
166167
return 0;
167168
}

makefile

+3-2
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,14 @@ OBJ = companders.o compandit.o
99
TEST_OBJ = companders.o companders_fulltest.o
1010

1111
%.o: %.c $(DEPS)
12-
$(CC) -c -o $@ $< $(CFLAGS)
12+
$(CC) -c -o $@ $< $(CFLAGS_TEST)
1313

1414
compandit: $(OBJ)
1515
$(CC) -o $@ $^ $(CFLAGS) -lm
1616

1717
companders_fulltest: $(TEST_OBJ)
18-
$(CC) -o $@ $^ $(CFLAGS_TEST) -lm
18+
$(CC) -o $@ $^ $(CFLAGS_TEST) -lm
19+
1920

2021
test: companders_fulltest
2122
./companders_fulltest

0 commit comments

Comments
 (0)