[test-suite] r249878 - [PowerPC] Remove sqlite3 and tramp3d-v4 from the test suite for PowerPC
Bill Seurer via llvm-commits
llvm-commits at lists.llvm.org
Fri Oct 9 12:13:43 PDT 2015
Author: seurer
Date: Fri Oct 9 14:13:42 2015
New Revision: 249878
URL: http://llvm.org/viewvc/llvm-project?rev=249878&view=rev
Log:
[PowerPC] Remove sqlite3 and tramp3d-v4 from the test suite for PowerPC
Remove sqlite3 and tramp3d-v4 from the test suite for PowerPC until it is figured out why they fail when the lnt tests are run with -jN (N>1).
Using -j will let us reduce the runtime of the lnt test.
Modified:
test-suite/trunk/MultiSource/Applications/Makefile
test-suite/trunk/MultiSource/Benchmarks/Makefile
Modified: test-suite/trunk/MultiSource/Applications/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/MultiSource/Applications/Makefile?rev=249878&r1=249877&r2=249878&view=diff
==============================================================================
--- test-suite/trunk/MultiSource/Applications/Makefile (original)
+++ test-suite/trunk/MultiSource/Applications/Makefile Fri Oct 9 14:13:42 2015
@@ -42,6 +42,10 @@ PARALLEL_DIRS := $(filter-out obsequi, $
PARALLEL_DIRS := $(filter-out lemon, $(PARALLEL_DIRS))
endif
+ifeq ($(ARCH),PowerPC)
+PARALLEL_DIRS := $(filter-out sqlite3, $(PARALLEL_DIRS))
+endif
+
ifdef BENCHMARKING_ONLY
PARALLEL_DIRS := $(filter-out Burg, $(PARALLEL_DIRS))
PARALLEL_DIRS := $(filter-out treecc, $(PARALLEL_DIRS))
Modified: test-suite/trunk/MultiSource/Benchmarks/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/MultiSource/Benchmarks/Makefile?rev=249878&r1=249877&r2=249878&view=diff
==============================================================================
--- test-suite/trunk/MultiSource/Benchmarks/Makefile (original)
+++ test-suite/trunk/MultiSource/Benchmarks/Makefile Fri Oct 9 14:13:42 2015
@@ -22,6 +22,10 @@ ifndef DISABLE_CXX
PARALLEL_DIRS += Prolangs-C++ PAQ8p tramp3d-v4 Bullet 7zip
endif
+ifeq ($(ARCH),PowerPC)
+PARALLEL_DIRS := $(filter-out tramp3d-v4, $(PARALLEL_DIRS))
+endif
+
ifndef SMALL_PROBLEM_SIZE
PARALLEL_DIRS += \
mafft
More information about the llvm-commits
mailing list