[PATCH] D13526: Remove sqlite3 and tramp3d-v4 from the test suite for PowerPC
Bill Seurer via llvm-commits
llvm-commits at lists.llvm.org
Wed Oct 7 12:03:57 PDT 2015
seurer created this revision.
seurer added reviewers: hfinkel, wschmidt, kbarton, nemanjai.
seurer added a subscriber: llvm-commits.
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.
http://reviews.llvm.org/D13526
Files:
MultiSource/Applications/Makefile
MultiSource/Benchmarks/Makefile
Index: MultiSource/Benchmarks/Makefile
===================================================================
--- MultiSource/Benchmarks/Makefile
+++ MultiSource/Benchmarks/Makefile
@@ -22,6 +22,10 @@
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
Index: MultiSource/Applications/Makefile
===================================================================
--- MultiSource/Applications/Makefile
+++ MultiSource/Applications/Makefile
@@ -42,6 +42,10 @@
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))
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D13526.36775.patch
Type: text/x-patch
Size: 914 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20151007/3eb9156e/attachment.bin>
More information about the llvm-commits
mailing list