]> granicus.if.org Git - clang/commitdiff
Clean up and de-XFAIL-ify PCH test for external definitions
authorDouglas Gregor <dgregor@apple.com>
Wed, 22 Apr 2009 22:09:39 +0000 (22:09 +0000)
committerDouglas Gregor <dgregor@apple.com>
Wed, 22 Apr 2009 22:09:39 +0000 (22:09 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69831 91177308-0d34-0410-b5e6-96231b3b80d8

test/PCH/external-defs.c
test/PCH/external-defs.h

index 251a10d9ce616343b043810c79825ef18c2f3a73..b7eb700e6b3eab3e908ac06a7fedd87331443c57 100644 (file)
@@ -3,8 +3,6 @@
 // RUN: clang-cc -triple x86_64-apple-darwin9 -include-pch %t.pch -emit-llvm -o %t %s &&
 
 // RUN: grep "@x = common global i32 0" %t | count 1 &&
-// RUN: grep "@y = global i32 17"  %t | count 1 &&
-// RUN: grep "@d = .*1.742"  %t | count 1 &&
 // RUN: grep "@z" %t | count 0 &&
 
 // RUN: grep "@x2 = global i32 19" %t | count 1 &&
@@ -19,5 +17,3 @@ int incomplete_array3[];
 struct S {
   int x, y;
 };
-
-// XFAIL
index bb51a9d64b9fe2f494658045437d499eee8ca3d9..657b47bcc141a3004f5bd2b60caf85423fc94aa9 100644 (file)
@@ -4,10 +4,6 @@
 int x;
 int x2;
 
-// Definitions
-int y = 17;
-double d = 17.42;
-
 // Should not show up
 static int z;