aboutsummaryrefslogtreecommitdiffstats
path: root/test/regression/Makefile
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@college-de-france.fr>2021-01-18 18:19:12 +0100
committerXavier Leroy <xavier.leroy@college-de-france.fr>2021-01-18 18:19:12 +0100
commitb3a52cf16ba3752797d983327f68a1199db9ba07 (patch)
tree5c13fd9cb3c50e400aef6c553a1655b399452679 /test/regression/Makefile
parentf3694c4ebb7155ef11730e757452498226caf423 (diff)
downloadcompcert-b3a52cf16ba3752797d983327f68a1199db9ba07.tar.gz
compcert-b3a52cf16ba3752797d983327f68a1199db9ba07.zip
Remove regression/interop1 test
Now subsumed by the tests in abi/
Diffstat (limited to 'test/regression/Makefile')
-rw-r--r--test/regression/Makefile9
1 files changed, 1 insertions, 8 deletions
diff --git a/test/regression/Makefile b/test/regression/Makefile
index 28439ed5..61c154a3 100644
--- a/test/regression/Makefile
+++ b/test/regression/Makefile
@@ -15,7 +15,7 @@ TESTS=int32 int64 floats floats-basics floats-lit \
volatile1 volatile2 volatile3 volatile4 \
funct3 expr5 struct7 struct8 struct11 struct12 casts1 casts2 char1 \
sizeof1 sizeof2 binops bool for1 for2 switch switch2 compound \
- decl1 interop1 bitfields9 ptrs3 \
+ decl1 bitfields9 ptrs3 \
parsing krfun ifconv
# Can run, but only in compiled mode, and have reference output in Results
@@ -44,13 +44,6 @@ all: $(TESTS:%=%.compcert) $(TESTS_COMP:%=%.compcert) $(TESTS_DIFF:%=%.compcert)
all_s: $(TESTS:%=%.s) $(TESTS_COMP:%=%.s) $(TESTS_DIFF:%=%.s) $(EXTRAS:%=%.s)
-interop1.compcert: interop1.c
- $(CC) -DCC_SIDE -c -o interop1n.o interop1.c
- $(CCOMP) $(CCOMPFLAGS) -DCOMPCERT_SIDE -o interop1.compcert interop1.c interop1n.o $(LIBS)
-
-interop1.s: interop1.c
- $(CCOMP) $(CCOMPFLAGS) -S interop1.c
-
%.compcert: %.c
$(CCOMP) $(CCOMPFLAGS) -o $*.compcert $*.c $(LIBS)