summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMatthijs Kooijman <matthijs@stdin.nl>2008-06-13 16:52:35 +0000
committerMatthijs Kooijman <matthijs@stdin.nl>2008-06-13 16:52:35 +0000
commit818ae72d0461ae4b45888b9971d6392ce143df72 (patch)
treed66c789a6317c6caf97831490790eb1b03c938b6 /test
parent6f8abf929ac173872cc50aff767bc25f2a07a523 (diff)
downloadllvm-818ae72d0461ae4b45888b9971d6392ce143df72.tar.gz
llvm-818ae72d0461ae4b45888b9971d6392ce143df72.tar.bz2
llvm-818ae72d0461ae4b45888b9971d6392ce143df72.tar.xz
XFAIL some tests that became failing due to the extra error reporting recently. PR's are created for these.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52250 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/BugPoint/misopt-basictest.ll2
-rw-r--r--test/FrontendC++/2006-11-30-NoCompileUnit.cpp2
-rw-r--r--test/FrontendC/2003-08-21-WideString.c2
-rw-r--r--test/FrontendC/2004-02-13-IllegalVararg.c2
-rw-r--r--test/FrontendC/2006-09-18-fwrite-cast-crash.c2
-rw-r--r--test/FrontendC/2007-09-05-ConstCtor.c2
-rw-r--r--test/FrontendC/2007-09-28-PackedUnionMember.c3
7 files changed, 15 insertions, 0 deletions
diff --git a/test/BugPoint/misopt-basictest.ll b/test/BugPoint/misopt-basictest.ll
index e59b4ed7d9..bed7c5c373 100644
--- a/test/BugPoint/misopt-basictest.ll
+++ b/test/BugPoint/misopt-basictest.ll
@@ -1,4 +1,6 @@
; RUN: bugpoint %s -dce -bugpoint-deletecalls -simplifycfg -silence-passes
+; XFAIL: *
+; See PR2453
@.LC0 = internal global [13 x i8] c"Hello World\0A\00" ; <[13 x i8]*> [#uses=1]
diff --git a/test/FrontendC++/2006-11-30-NoCompileUnit.cpp b/test/FrontendC++/2006-11-30-NoCompileUnit.cpp
index c225eb782e..70fc642e75 100644
--- a/test/FrontendC++/2006-11-30-NoCompileUnit.cpp
+++ b/test/FrontendC++/2006-11-30-NoCompileUnit.cpp
@@ -8,6 +8,8 @@
// RUN: gdb -q -batch -n -x %t2 NoCompileUnit.exe | \
// RUN: tee NoCompileUnit.out | not grep {"low == high"}
// XFAIL: alpha|ia64|arm
+// XFAIL: *
+// See PR2454
class MamaDebugTest {
diff --git a/test/FrontendC/2003-08-21-WideString.c b/test/FrontendC/2003-08-21-WideString.c
index 0a833dcac5..ae0783eaad 100644
--- a/test/FrontendC/2003-08-21-WideString.c
+++ b/test/FrontendC/2003-08-21-WideString.c
@@ -1,4 +1,6 @@
// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
+// XFAIL: *
+// See PR2425
struct {
int *name;
diff --git a/test/FrontendC/2004-02-13-IllegalVararg.c b/test/FrontendC/2004-02-13-IllegalVararg.c
index b6e5f2cb38..06073305e0 100644
--- a/test/FrontendC/2004-02-13-IllegalVararg.c
+++ b/test/FrontendC/2004-02-13-IllegalVararg.c
@@ -1,4 +1,6 @@
// RUN: %llvmgcc -xc %s -w -c -o - | llc
+// XFAIL: *
+// See PR2425
#include <stdarg.h>
diff --git a/test/FrontendC/2006-09-18-fwrite-cast-crash.c b/test/FrontendC/2006-09-18-fwrite-cast-crash.c
index 0e02907ddb..fa64999fbd 100644
--- a/test/FrontendC/2006-09-18-fwrite-cast-crash.c
+++ b/test/FrontendC/2006-09-18-fwrite-cast-crash.c
@@ -1,5 +1,7 @@
// RUN: %llvmgcc %s -S -o /dev/null
// PR910
+// XFAIL: *
+// See PR2425
struct l_struct_2E_FILE { char x; };
unsigned fwrite(signed char *, unsigned , unsigned , signed char *);
diff --git a/test/FrontendC/2007-09-05-ConstCtor.c b/test/FrontendC/2007-09-05-ConstCtor.c
index c267a59033..0b06cc8dc4 100644
--- a/test/FrontendC/2007-09-05-ConstCtor.c
+++ b/test/FrontendC/2007-09-05-ConstCtor.c
@@ -1,5 +1,7 @@
// RUN: %llvmgcc -xc -Os -c %s -o /dev/null
// PR1641
+// XFAIL: *
+// See PR2425
struct A {
unsigned long l;
diff --git a/test/FrontendC/2007-09-28-PackedUnionMember.c b/test/FrontendC/2007-09-28-PackedUnionMember.c
index 1e64657483..be244d5d4e 100644
--- a/test/FrontendC/2007-09-28-PackedUnionMember.c
+++ b/test/FrontendC/2007-09-28-PackedUnionMember.c
@@ -1,4 +1,7 @@
// RUN: %llvmgcc %s -S -o -
+// XFAIL: *
+// See PR2425
+
#pragma pack(push, 2)
struct H {
unsigned long f1;