[test-suite] r210434 - [Mips] Skip AtomicOps test on MIPS 32-bit because this hardware does not

Simon Atanasyan simon at atanasyan.com
Sun Jun 8 12:17:15 PDT 2014


Author: atanasyan
Date: Sun Jun  8 14:17:15 2014
New Revision: 210434

URL: http://llvm.org/viewvc/llvm-project?rev=210434&view=rev
Log:
[Mips] Skip AtomicOps test on MIPS 32-bit because this hardware does not
support 8 bytes atomic operations.

Modified:
    test-suite/trunk/SingleSource/UnitTests/Makefile

Modified: test-suite/trunk/SingleSource/UnitTests/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/SingleSource/UnitTests/Makefile?rev=210434&r1=210433&r2=210434&view=diff
==============================================================================
--- test-suite/trunk/SingleSource/UnitTests/Makefile (original)
+++ test-suite/trunk/SingleSource/UnitTests/Makefile Sun Jun  8 14:17:15 2014
@@ -36,6 +36,10 @@ endif
 # Add special tests for Mips
 ifeq ($(ARCH),Mips)
 DIRS += Mips
+# MIPS 32-bit does not support 8 bytes atomic operations.
+ifeq (,$(findstring mips64,$(MIPSARCH)))
+PROGRAMS_TO_SKIP += AtomicOps
+endif
 endif
 
 ifeq ($(ARCH),XCore)





More information about the llvm-commits mailing list