[test-suite] r203453 - XCore target: remove tests that require fork()
Robert Lytton
robert at xmos.com
Mon Mar 10 04:14:47 PDT 2014
Author: rlytton
Date: Mon Mar 10 06:14:47 2014
New Revision: 203453
URL: http://llvm.org/viewvc/llvm-project?rev=203453&view=rev
Log:
XCore target: remove tests that require fork()
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=203453&r1=203452&r2=203453&view=diff
==============================================================================
--- test-suite/trunk/MultiSource/Applications/Makefile (original)
+++ test-suite/trunk/MultiSource/Applications/Makefile Mon Mar 10 06:14:47 2014
@@ -37,6 +37,9 @@ PARALLEL_DIRS := $(filter-out siod, $(PA
PARALLEL_DIRS := $(filter-out ClamAV, $(PARALLEL_DIRS))
PARALLEL_DIRS := $(filter-out sqlite3, $(PARALLEL_DIRS))
PARALLEL_DIRS := $(filter-out obsequi, $(PARALLEL_DIRS))
+# XCore does not support fork().
+# lemon removed pending general method for running tests multiple times.
+PARALLEL_DIRS := $(filter-out lemon, $(PARALLEL_DIRS))
endif
include $(LEVEL)/Makefile.programs
Modified: test-suite/trunk/MultiSource/Benchmarks/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/MultiSource/Benchmarks/Makefile?rev=203453&r1=203452&r2=203453&view=diff
==============================================================================
--- test-suite/trunk/MultiSource/Benchmarks/Makefile (original)
+++ test-suite/trunk/MultiSource/Benchmarks/Makefile Mon Mar 10 06:14:47 2014
@@ -30,6 +30,9 @@ endif
ifeq ($(ARCH),XCore)
# XCore does not support pthreads
PARALLEL_DIRS := $(filter-out 7zip, $(PARALLEL_DIRS))
+# XCore does not support fork().
+# PAQ8p removed pending general method for running tests multiple times.
+PARALLEL_DIRS := $(filter-out PAQ8p, $(PARALLEL_DIRS))
endif
include $(LEVEL)/MultiSource/Makefile.multisrc
More information about the llvm-commits
mailing list