From aa33cb72ab29c31e87f0cca9a0e72fe3a68247b7 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Fri, 19 Feb 2016 15:12:24 +0700 Subject: [PATCH] [fuzzing] Make test runner actually work --- test/fuzzing/Makefile.am | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/test/fuzzing/Makefile.am b/test/fuzzing/Makefile.am index a7266909a..7b0eb9452 100644 --- a/test/fuzzing/Makefile.am +++ b/test/fuzzing/Makefile.am @@ -44,7 +44,9 @@ hb_fuzzer_DEPENDENCIES = \ $(NULL) check: - cat $(top_srcdir)/test/shaping/tests/fuzzed.tests | \ - cut -d: -f1 | xargs ./hb-fuzzer + cat $(srcdir)/../shaping/tests/fuzzed.tests | \ + cut -d: -f1 | while read x; do \ + ./hb-fuzzer $(srcdir)/../shaping/$$x; \ + done -include $(top_srcdir)/git.mk