aboutsummaryrefslogtreecommitdiffstats
path: root/test/regression/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'test/regression/Makefile')
-rw-r--r--test/regression/Makefile10
1 files changed, 7 insertions, 3 deletions
diff --git a/test/regression/Makefile b/test/regression/Makefile
index c77aa073..57547694 100644
--- a/test/regression/Makefile
+++ b/test/regression/Makefile
@@ -9,8 +9,7 @@ LIBS=$(LIBMATH)
# Can run, both in compiled mode and in interpreter mode,
# and have reference output in Results
-
-TESTS=int32 int64 floats floats-basics \
+TESTS?=int32 int64 floats floats-basics \
expr1 expr6 funptr2 initializers initializers2 initializers3 \
volatile1 volatile2 volatile3 volatile4 \
funct3 expr5 struct7 struct8 struct11 struct12 casts1 casts2 char1 \
@@ -20,12 +19,17 @@ TESTS=int32 int64 floats floats-basics \
# Can run, but only in compiled mode, and have reference output in Results
-TESTS_COMP=attribs1 bitfields1 bitfields2 bitfields3 bitfields4 \
+TESTS_COMP?=attribs1 bitfields1 bitfields2 bitfields3 bitfields4 \
bitfields5 bitfields6 bitfields7 bitfields8 \
builtins-$(ARCH) alignas \
varargs1 varargs2 varargs3 sections alias aligned\
packedstruct1 packedstruct2
+# varargs2 ---> bug in k1-cos-gcc
+ifeq ($(ARCH),mppa_k1c)
+ TESTS_COMP:=$(filter-out varargs2,$(TESTS_COMP))
+endif
+
# Can run, both in compiled mode and in interpreter mode,
# but produce processor-dependent results, so no reference output in Results