aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDelphine Demange <delphine.demange@irisa.fr>2020-11-05 15:32:09 +0100
committerDelphine Demange <delphine.demange@irisa.fr>2020-11-05 15:32:09 +0100
commit00a17c975f68a4dd30e6a322bcd7511a7da7b801 (patch)
tree125735e630335cc27e5eb57a60bd3ac8ea96c63f
parentd426499c27e514795d1e635325e7de1bd8e70e10 (diff)
downloadcompcert-kvx-00a17c975f68a4dd30e6a322bcd7511a7da7b801.tar.gz
compcert-kvx-00a17c975f68a4dd30e6a322bcd7511a7da7b801.zip
add extra and picosat to the test files
-rw-r--r--test/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile
index 504e4c53..e5546824 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -1,12 +1,17 @@
include ../Makefile.config
-DIRS=c compression raytracer spass regression
+DIRS=c compression raytracer spass regression \
+ extra
+PICOSAT=picosat-965
+
ifeq ($(CLIGHTGEN),true)
DIRS+=clightgen
endif
all:
set -e; for i in $(DIRS); do $(MAKE) CCOMPOPTS='$(CCOMPOPTS)' -C $$i all; done
+ cd $(PICOSAT) && ./configure.sh && cd ..
+ $(MAKE) CCOMPOPTS='$(CCOMPOPTS)' -C $(PICOSAT) -f Makefile.local all
test:
set -e; for i in $(DIRS); do $(MAKE) SIMU='$(SIMU)' -C $$i test; done
@@ -19,3 +24,4 @@ bench:
clean:
for i in $(DIRS); do $(MAKE) -C $$i clean; done
+ $(MAKE) CCOMPOPTS='$(CCOMPOPTS)' -C $(PICOSAT) -f Makefile.local clean