Skip to content

Commit f7219d5

Browse files
committed
Fix make check
#35 and #40 added new tests that #38 did not take into account this is one case where it would be good if Travis re-tested the PR after new commits get pushed to master
1 parent 1f21f3c commit f7219d5

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

Makefile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -96,25 +96,25 @@ data/GraphemeBreakTest.txt:
9696
$(MAKE) -C data GraphemeBreakTest.txt
9797

9898
test/normtest: test/normtest.c utf8proc.o utf8proc.h test/tests.h
99-
$(CC) test/normtest.c utf8proc.o -o $@
99+
$(CC) $(CFLAGS) test/normtest.c utf8proc.o -o $@
100100

101101
test/graphemetest: test/graphemetest.c utf8proc.o utf8proc.h test/tests.h
102-
$(CC) test/graphemetest.c utf8proc.o -o $@
102+
$(CC) $(CFLAGS) test/graphemetest.c utf8proc.o -o $@
103103

104104
test/printproperty: test/printproperty.c utf8proc.o utf8proc.h test/tests.h
105-
$(CC) test/printproperty.c utf8proc.o -o $@
105+
$(CC) $(CFLAGS) test/printproperty.c utf8proc.o -o $@
106106

107107
test/charwidth: test/charwidth.c utf8proc.o utf8proc.h test/tests.h
108-
$(CC) test/charwidth.c utf8proc.o -o $@
108+
$(CC) $(CFLAGS) test/charwidth.c utf8proc.o -o $@
109109

110110
test/valid: test/valid.c utf8proc.o utf8proc.h test/tests.h
111-
$(cc) test/valid.c utf8proc.o -o $@
111+
$(CC) $(CFLAGS) test/valid.c utf8proc.o -o $@
112112

113113
test/iterate: test/iterate.c utf8proc.o utf8proc.h test/tests.h
114-
$(cc) test/iterate.c utf8proc.o -o $@
114+
$(CC) $(CFLAGS) test/iterate.c utf8proc.o -o $@
115115

116116
test/case: test/case.c utf8proc.o utf8proc.h test/tests.h
117-
$(cc) test/case.c utf8proc.o -o $@
117+
$(CC) $(CFLAGS) test/case.c utf8proc.o -o $@
118118

119119
check: test/normtest data/NormalizationTest.txt test/graphemetest data/GraphemeBreakTest.txt test/printproperty test/case test/charwidth test/valid test/iterate bench/bench.c bench/util.c bench/util.h utf8proc.o
120120
$(MAKE) -C bench

0 commit comments

Comments
 (0)