summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorSteven G. Johnson <stevenj@alum.mit.edu>2018-04-27 08:23:10 -0400
committerSteven G. Johnson <stevenj@alum.mit.edu>2018-04-27 08:46:44 -0400
commit53d7968055d8c89769633afa3990f59abe53122f (patch)
tree19b02326e68b31405354a3b0c16f677cd6105150 /Makefile
parentacc204f1f15e879331c95096b6d4fac8bc2c906f (diff)
downloadlibutf8proc-53d7968055d8c89769633afa3990f59abe53122f.tar.gz
libutf8proc-53d7968055d8c89769633afa3990f59abe53122f.tar.bz2
added test for #128
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b3bb570..9a0cb51 100644
--- a/Makefile
+++ b/Makefile
@@ -138,11 +138,15 @@ test/case: test/case.c test/tests.o utf8proc.o utf8proc.h test/tests.h
test/custom: test/custom.c test/tests.o utf8proc.o utf8proc.h test/tests.h
$(CC) $(UCFLAGS) test/custom.c test/tests.o utf8proc.o -o $@
-check: test/normtest data/NormalizationTest.txt test/graphemetest data/GraphemeBreakTest.txt test/printproperty test/case test/custom test/charwidth test/valid test/iterate bench/bench.c bench/util.c bench/util.h utf8proc.o
+test/misc: test/misc.c test/tests.o utf8proc.o utf8proc.h test/tests.h
+ $(CC) $(UCFLAGS) test/misc.c test/tests.o utf8proc.o -o $@
+
+check: test/normtest data/NormalizationTest.txt test/graphemetest data/GraphemeBreakTest.txt test/printproperty test/case test/custom test/charwidth test/misc test/valid test/iterate bench/bench.c bench/util.c bench/util.h utf8proc.o
$(MAKE) -C bench
test/normtest data/NormalizationTest.txt
test/graphemetest data/GraphemeBreakTest.txt
test/charwidth
+ test/misc
test/valid
test/iterate
test/case