aboutsummaryrefslogtreecommitdiffstats
path: root/test/c/Makefile
diff options
context:
space:
mode:
authorCyril SIX <cyril.six@kalray.eu>2019-09-25 14:37:23 +0200
committerCyril SIX <cyril.six@kalray.eu>2019-09-25 14:37:23 +0200
commit5ca4b192499ee4829aee1256a3bebf2318c68108 (patch)
tree980d8c7605c383c52b03e3345f8a58cc1f97e52e /test/c/Makefile
parent32f18c9068b4f23997733df68960f4f6c73a7ff4 (diff)
downloadcompcert-kvx-5ca4b192499ee4829aee1256a3bebf2318c68108.tar.gz
compcert-kvx-5ca4b192499ee4829aee1256a3bebf2318c68108.zip
Restored previous input sizes for other backends
Diffstat (limited to 'test/c/Makefile')
-rw-r--r--test/c/Makefile12
1 files changed, 2 insertions, 10 deletions
diff --git a/test/c/Makefile b/test/c/Makefile
index b7db48ed..6bd05718 100644
--- a/test/c/Makefile
+++ b/test/c/Makefile
@@ -46,20 +46,12 @@ all_gcc: $(PROGS:%=%.gcc)
test: all
@for i in $(PROGS); do \
- $(EXECUTE) ./$$i.compcert > $$i.compcert.out;\
- if cmp -s $$i.compcert.out Results/$$i; \
- then echo "$$i: passed"; \
- else echo "$$i: FAILED"; exit 2; \
- fi; \
+ SIMU='$(EXECUTE)' ./Runtest $$i ./$$i.compcert;\
done
test_gcc: all_gcc
@for i in $(PROGS); do \
- $(EXECUTE) ./$$i.gcc > $$i.gcc.out;\
- if cmp -s $$i.gcc.out Results/$$i; \
- then echo "$$i: passed"; \
- else echo "$$i: FAILED"; exit 2;\
- fi; \
+ SIMU='$(EXECUTE)' ./Runtest $$i ./$$i.gcc;\
done
bench_gcc: all_gcc