[llvm-commits] [llvm] r86553 - in /llvm/trunk/test: FrontendC++/2006-11-06-StackTrace.cpp FrontendC++/2006-11-30-NoCompileUnit.cpp FrontendC++/2006-11-30-Pubnames.cpp FrontendC/Atomics-no64bit.c FrontendC/Atomics.c

Daniel Dunbar daniel at zuster.org
Mon Nov 9 08:38:16 PST 2009


Author: ddunbar
Date: Mon Nov  9 10:38:15 2009
New Revision: 86553

URL: http://llvm.org/viewvc/llvm-project?rev=86553&view=rev
Log:
Use ',' separation in XFAILs, lit doesn't evaluate them as regexs (easy to add,
but might as well use the more standard syntax).

Modified:
    llvm/trunk/test/FrontendC++/2006-11-06-StackTrace.cpp
    llvm/trunk/test/FrontendC++/2006-11-30-NoCompileUnit.cpp
    llvm/trunk/test/FrontendC++/2006-11-30-Pubnames.cpp
    llvm/trunk/test/FrontendC/Atomics-no64bit.c
    llvm/trunk/test/FrontendC/Atomics.c

Modified: llvm/trunk/test/FrontendC++/2006-11-06-StackTrace.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/FrontendC%2B%2B/2006-11-06-StackTrace.cpp?rev=86553&r1=86552&r2=86553&view=diff

==============================================================================
--- llvm/trunk/test/FrontendC++/2006-11-06-StackTrace.cpp (original)
+++ llvm/trunk/test/FrontendC++/2006-11-06-StackTrace.cpp Mon Nov  9 10:38:15 2009
@@ -12,7 +12,7 @@
 
 // Only works on ppc (but not apple-darwin9), x86 and x86_64.  Should
 // generalize?
-// XFAIL: alpha|arm|powerpc-apple-darwin9
+// XFAIL: alpha,arm,powerpc-apple-darwin9
 
 #include <stdlib.h>
 

Modified: llvm/trunk/test/FrontendC++/2006-11-30-NoCompileUnit.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/FrontendC%2B%2B/2006-11-30-NoCompileUnit.cpp?rev=86553&r1=86552&r2=86553&view=diff

==============================================================================
--- llvm/trunk/test/FrontendC++/2006-11-30-NoCompileUnit.cpp (original)
+++ llvm/trunk/test/FrontendC++/2006-11-30-NoCompileUnit.cpp Mon Nov  9 10:38:15 2009
@@ -7,7 +7,7 @@
 // RUN: echo {break main\nrun\np NoCompileUnit::pubname} > %t2
 // RUN: gdb -q -batch -n -x %t2 NoCompileUnit.exe | \
 // RUN:   tee NoCompileUnit.out | not grep {"low == high"}
-// XFAIL: alpha|arm
+// XFAIL: alpha,arm
 // XFAIL: *
 // See PR2454
 

Modified: llvm/trunk/test/FrontendC++/2006-11-30-Pubnames.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/FrontendC%2B%2B/2006-11-30-Pubnames.cpp?rev=86553&r1=86552&r2=86553&view=diff

==============================================================================
--- llvm/trunk/test/FrontendC++/2006-11-30-Pubnames.cpp (original)
+++ llvm/trunk/test/FrontendC++/2006-11-30-Pubnames.cpp Mon Nov  9 10:38:15 2009
@@ -7,7 +7,7 @@
 // RUN: %llvmdsymutil %t.exe 
 // RUN: echo {break main\nrun\np Pubnames::pubname} > %t.in
 // RUN: gdb -q -batch -n -x %t.in %t.exe | tee %t.out | grep {\$1 = 10}
-// XFAIL: alpha|arm
+// XFAIL: alpha,arm
 struct Pubnames {
   static int pubname;
 };

Modified: llvm/trunk/test/FrontendC/Atomics-no64bit.c
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/FrontendC/Atomics-no64bit.c?rev=86553&r1=86552&r2=86553&view=diff

==============================================================================
--- llvm/trunk/test/FrontendC/Atomics-no64bit.c (original)
+++ llvm/trunk/test/FrontendC/Atomics-no64bit.c Mon Nov  9 10:38:15 2009
@@ -9,7 +9,7 @@
 // Currently this is implemented only for Alpha, X86, PowerPC.
 // Add your target here if it doesn't work.
 // This version of the test does not include long long.
-// XFAIL: sparc|arm
+// XFAIL: sparc,arm
 
 signed char sc;
 unsigned char uc;

Modified: llvm/trunk/test/FrontendC/Atomics.c
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/FrontendC/Atomics.c?rev=86553&r1=86552&r2=86553&view=diff

==============================================================================
--- llvm/trunk/test/FrontendC/Atomics.c (original)
+++ llvm/trunk/test/FrontendC/Atomics.c Mon Nov  9 10:38:15 2009
@@ -9,7 +9,7 @@
 // Currently this is implemented only for Alpha, X86, PowerPC.
 // Add your target here if it doesn't work.
 // PPC32 does not translate the long long variants, so fails this test.
-// XFAIL: sparc|arm|powerpc
+// XFAIL: sparc,arm,powerpc
 
 signed char sc;
 unsigned char uc;





More information about the llvm-commits mailing list