aboutsummaryrefslogtreecommitdiff
path: root/SingleSource
diff options
context:
space:
mode:
Diffstat (limited to 'SingleSource')
-rw-r--r--SingleSource/Benchmarks/Stanford/Makefile4
-rw-r--r--SingleSource/Regression/C/Makefile3
-rw-r--r--SingleSource/UnitTests/Makefile3
-rw-r--r--SingleSource/UnitTests/SignlessTypes/Makefile2
-rw-r--r--SingleSource/UnitTests/Vector/AArch64/Makefile4
-rw-r--r--SingleSource/UnitTests/Vector/Makefile2
-rw-r--r--SingleSource/UnitTests/Vector/NEON/Makefile4
7 files changed, 20 insertions, 2 deletions
diff --git a/SingleSource/Benchmarks/Stanford/Makefile b/SingleSource/Benchmarks/Stanford/Makefile
index 8eebe804..023671c9 100644
--- a/SingleSource/Benchmarks/Stanford/Makefile
+++ b/SingleSource/Benchmarks/Stanford/Makefile
@@ -2,4 +2,8 @@ LEVEL = ../../..
LDFLAGS += -lm
FP_TOLERANCE = 0.001
+ifdef BENCHMARKING_ONLY
+PROGRAMS_TO_SKIP += IntMM
+endif
+
include $(LEVEL)/SingleSource/Makefile.singlesrc
diff --git a/SingleSource/Regression/C/Makefile b/SingleSource/Regression/C/Makefile
index 3ad16349..1cc49737 100644
--- a/SingleSource/Regression/C/Makefile
+++ b/SingleSource/Regression/C/Makefile
@@ -30,13 +30,16 @@ PROGRAMS_TO_SKIP += \
ConstructorDestructorAttributes \
DuffsDevice \
globalrefs \
+ matrixTranspose \
pointer_arithmetic \
PR10189 \
PR1386 \
PR491 \
PR640 \
sumarray \
+ sumarray2d \
sumarraymalloc \
+ test_indvars \
testtrace
endif
diff --git a/SingleSource/UnitTests/Makefile b/SingleSource/UnitTests/Makefile
index d18c096f..e85d6434 100644
--- a/SingleSource/UnitTests/Makefile
+++ b/SingleSource/UnitTests/Makefile
@@ -102,8 +102,10 @@ PROGRAMS_TO_SKIP += \
2005-05-11-Popcount-ffs-fls \
2005-05-12-Int64ToFP \
2005-05-13-SDivTwo \
+ 2005-07-15-Bitfield-ABI \
2005-07-17-INT-To-FP \
2005-11-29-LongSwitch \
+ 2006-01-23-UnionInit \
2006-01-29-SimpleIndirectCall \
2006-02-04-DivRem \
2006-12-01-float_varg \
@@ -112,6 +114,7 @@ PROGRAMS_TO_SKIP += \
2006-12-11-LoadConstants \
2007-01-04-KNR-Args \
2007-03-02-VaCopy \
+ 2007-04-10-BitfieldTest \
2007-04-25-weak \
2008-04-18-LoopBug \
2008-04-20-LoopBug2 \
diff --git a/SingleSource/UnitTests/SignlessTypes/Makefile b/SingleSource/UnitTests/SignlessTypes/Makefile
index a873b41f..bd5b078a 100644
--- a/SingleSource/UnitTests/SignlessTypes/Makefile
+++ b/SingleSource/UnitTests/SignlessTypes/Makefile
@@ -12,7 +12,7 @@ SEED := $(shell date +%j)
RUN_OPTIONS := 31415926
ifdef BENCHMARKING_ONLY
-PROGRAMS_TO_SKIP += cast2 cast-bug ccc div factor shr
+PROGRAMS_TO_SKIP += cast2 cast-bug ccc div factor shr rem
endif
LDFLAGS += -lstdc++
diff --git a/SingleSource/UnitTests/Vector/AArch64/Makefile b/SingleSource/UnitTests/Vector/AArch64/Makefile
index 037ece24..75b08a33 100644
--- a/SingleSource/UnitTests/Vector/AArch64/Makefile
+++ b/SingleSource/UnitTests/Vector/AArch64/Makefile
@@ -3,6 +3,10 @@
DIRS =
LEVEL = ../../../..
+ifdef BENCHMARKING_ONLY
+PROGRAMS_TO_SKIP += aarch64_neon_intrinsics
+endif
+
include $(LEVEL)/SingleSource/Makefile.singlesrc
CFLAGS += -std=c99
diff --git a/SingleSource/UnitTests/Vector/Makefile b/SingleSource/UnitTests/Vector/Makefile
index 316ce223..c0088535 100644
--- a/SingleSource/UnitTests/Vector/Makefile
+++ b/SingleSource/UnitTests/Vector/Makefile
@@ -38,7 +38,7 @@ endif
endif
ifdef BENCHMARKING_ONLY
-PROGRAMS_TO_SKIP += build divides sumarray sumarray-dbl
+PROGRAMS_TO_SKIP += build constpool divides simple sumarray sumarray-dbl
endif
include $(LEVEL)/SingleSource/Makefile.singlesrc
diff --git a/SingleSource/UnitTests/Vector/NEON/Makefile b/SingleSource/UnitTests/Vector/NEON/Makefile
index 910bd893..f1223647 100644
--- a/SingleSource/UnitTests/Vector/NEON/Makefile
+++ b/SingleSource/UnitTests/Vector/NEON/Makefile
@@ -3,6 +3,10 @@
DIRS =
LEVEL = ../../../..
+ifdef BENCHMARKING_ONLY
+PROGRAMS_TO_SKIP += simple
+endif
+
include $(LEVEL)/SingleSource/Makefile.singlesrc
CFLAGS += -std=c99