[test-suite] r252944 - [PowerPC]Test case re-activation and deactivation

Bill Seurer via llvm-commits llvm-commits at lists.llvm.org
Thu Nov 12 12:46:35 PST 2015


Author: seurer
Date: Thu Nov 12 14:46:35 2015
New Revision: 252944

URL: http://llvm.org/viewvc/llvm-project?rev=252944&view=rev
Log:
[PowerPC]Test case re-activation and deactivation

The test cases sqlite3 and tramp3d-v4 now work on power.  Previously they caused a compiler crash which has been fixed.

The test case hexxagon fails when run after being compiled with optimization.  It is being deactivated until the problem is isolated.


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=252944&r1=252943&r2=252944&view=diff
==============================================================================
--- test-suite/trunk/MultiSource/Applications/Makefile (original)
+++ test-suite/trunk/MultiSource/Applications/Makefile Thu Nov 12 14:46:35 2015
@@ -42,8 +42,9 @@ PARALLEL_DIRS := $(filter-out obsequi, $
 PARALLEL_DIRS := $(filter-out lemon, $(PARALLEL_DIRS))
 endif
 
+# FIXME: re-activate hexxagon when opt/codegen problem for it is fixed
 ifeq ($(ARCH),PowerPC)
-PARALLEL_DIRS := $(filter-out sqlite3, $(PARALLEL_DIRS))
+PARALLEL_DIRS := $(filter-out hexxagon, $(PARALLEL_DIRS))
 endif
 
 ifdef BENCHMARKING_ONLY

Modified: test-suite/trunk/MultiSource/Benchmarks/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/MultiSource/Benchmarks/Makefile?rev=252944&r1=252943&r2=252944&view=diff
==============================================================================
--- test-suite/trunk/MultiSource/Benchmarks/Makefile (original)
+++ test-suite/trunk/MultiSource/Benchmarks/Makefile Thu Nov 12 14:46:35 2015
@@ -22,10 +22,6 @@ 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