[llvm-commits] [llvm] r138647 - in /llvm/trunk/test: Linker/2003-01-30-LinkerTypeRename.ll Linker/2003-04-26-NullPtrLinkProblem.ll Linker/2003-06-02-TypeResolveProblem.ll Linker/2003-06-02-TypeResolveProblem2.ll Linker/2003-08-23-GlobalVarLinking.ll Linker/2003-11-18-TypeResolution.ll Transforms/ScalarRepl/2003-10-29-ArrayProblem.ll

Andrew Trick atrick at apple.com
Fri Aug 26 13:09:48 PDT 2011


Author: atrick
Date: Fri Aug 26 15:09:48 2011
New Revision: 138647

URL: http://llvm.org/viewvc/llvm-project?rev=138647&view=rev
Log:
Use %% for literals in RUN lines.

Modified:
    llvm/trunk/test/Linker/2003-01-30-LinkerTypeRename.ll
    llvm/trunk/test/Linker/2003-04-26-NullPtrLinkProblem.ll
    llvm/trunk/test/Linker/2003-06-02-TypeResolveProblem.ll
    llvm/trunk/test/Linker/2003-06-02-TypeResolveProblem2.ll
    llvm/trunk/test/Linker/2003-08-23-GlobalVarLinking.ll
    llvm/trunk/test/Linker/2003-11-18-TypeResolution.ll
    llvm/trunk/test/Transforms/ScalarRepl/2003-10-29-ArrayProblem.ll

Modified: llvm/trunk/test/Linker/2003-01-30-LinkerTypeRename.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Linker/2003-01-30-LinkerTypeRename.ll?rev=138647&r1=138646&r2=138647&view=diff
==============================================================================
--- llvm/trunk/test/Linker/2003-01-30-LinkerTypeRename.ll (original)
+++ llvm/trunk/test/Linker/2003-01-30-LinkerTypeRename.ll Fri Aug 26 15:09:48 2011
@@ -1,9 +1,9 @@
-; This fails because the linker renames the non-opaque type not the opaque 
+; This fails because the linker renames the non-opaque type not the opaque
 ; one...
 
-; RUN: echo {%Ty = type opaque @GV = external global %Ty*} | llvm-as > %t.1.bc
+; RUN: echo {%%Ty = type opaque @GV = external global %%Ty*} | llvm-as > %t.1.bc
 ; RUN: llvm-as < %s > %t.2.bc
-; RUN: llvm-link %t.1.bc %t.2.bc -S | grep {%Ty } | not grep opaque
+; RUN: llvm-link %t.1.bc %t.2.bc -S | grep {%%Ty } | not grep opaque
 
 %Ty = type {i32}
 

Modified: llvm/trunk/test/Linker/2003-04-26-NullPtrLinkProblem.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Linker/2003-04-26-NullPtrLinkProblem.ll?rev=138647&r1=138646&r2=138647&view=diff
==============================================================================
--- llvm/trunk/test/Linker/2003-04-26-NullPtrLinkProblem.ll (original)
+++ llvm/trunk/test/Linker/2003-04-26-NullPtrLinkProblem.ll Fri Aug 26 15:09:48 2011
@@ -1,7 +1,7 @@
 ; This one fails because the LLVM runtime is allowing two null pointers of
 ; the same type to be created!
 
-; RUN: echo {%T = type i32} | llvm-as > %t.2.bc
+; RUN: echo {%%T = type i32} | llvm-as > %t.2.bc
 ; RUN: llvm-as %s -o %t.1.bc
 ; RUN: llvm-link %t.1.bc %t.2.bc
 

Modified: llvm/trunk/test/Linker/2003-06-02-TypeResolveProblem.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Linker/2003-06-02-TypeResolveProblem.ll?rev=138647&r1=138646&r2=138647&view=diff
==============================================================================
--- llvm/trunk/test/Linker/2003-06-02-TypeResolveProblem.ll (original)
+++ llvm/trunk/test/Linker/2003-06-02-TypeResolveProblem.ll Fri Aug 26 15:09:48 2011
@@ -1,4 +1,4 @@
-; RUN: echo {%T = type opaque} | llvm-as > %t.2.bc
+; RUN: echo {%%T = type opaque} | llvm-as > %t.2.bc
 ; RUN: llvm-as < %s > %t.1.bc
 ; RUN: llvm-link %t.1.bc %t.2.bc
 

Modified: llvm/trunk/test/Linker/2003-06-02-TypeResolveProblem2.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Linker/2003-06-02-TypeResolveProblem2.ll?rev=138647&r1=138646&r2=138647&view=diff
==============================================================================
--- llvm/trunk/test/Linker/2003-06-02-TypeResolveProblem2.ll (original)
+++ llvm/trunk/test/Linker/2003-06-02-TypeResolveProblem2.ll Fri Aug 26 15:09:48 2011
@@ -1,4 +1,4 @@
-; RUN: echo {%T = type i32} | llvm-as > %t.1.bc
+; RUN: echo {%%T = type i32} | llvm-as > %t.1.bc
 ; RUN: llvm-as < %s > %t.2.bc
 ; RUN: llvm-link %t.1.bc %t.2.bc
 

Modified: llvm/trunk/test/Linker/2003-08-23-GlobalVarLinking.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Linker/2003-08-23-GlobalVarLinking.ll?rev=138647&r1=138646&r2=138647&view=diff
==============================================================================
--- llvm/trunk/test/Linker/2003-08-23-GlobalVarLinking.ll (original)
+++ llvm/trunk/test/Linker/2003-08-23-GlobalVarLinking.ll Fri Aug 26 15:09:48 2011
@@ -1,5 +1,5 @@
 ; RUN: llvm-as < %s > %t.out1.bc
-; RUN: echo {%T1 = type opaque %T2 = type opaque @S = external global \{ i32, %T1* \} declare void @F(%T2*)}\
+; RUN: echo {%%T1 = type opaque %%T2 = type opaque @S = external global \{ i32, %%T1* \} declare void @F(%%T2*)}\
 ; RUN:   | llvm-as > %t.out2.bc
 ; RUN: llvm-link %t.out1.bc %t.out2.bc -S | not grep opaque
 

Modified: llvm/trunk/test/Linker/2003-11-18-TypeResolution.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Linker/2003-11-18-TypeResolution.ll?rev=138647&r1=138646&r2=138647&view=diff
==============================================================================
--- llvm/trunk/test/Linker/2003-11-18-TypeResolution.ll (original)
+++ llvm/trunk/test/Linker/2003-11-18-TypeResolution.ll Fri Aug 26 15:09:48 2011
@@ -5,7 +5,7 @@
 ; own.
 
 ; RUN: llvm-as < %s > %t.out2.bc
-; RUN: echo "%T1 = type opaque  @GVar = external global %T1*" | llvm-as > %t.out1.bc
+; RUN: echo "%%T1 = type opaque  @GVar = external global %%T1*" | llvm-as > %t.out1.bc
 ; RUN: llvm-link %t.out1.bc %t.out2.bc
 
 %T1 = type opaque

Modified: llvm/trunk/test/Transforms/ScalarRepl/2003-10-29-ArrayProblem.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/ScalarRepl/2003-10-29-ArrayProblem.ll?rev=138647&r1=138646&r2=138647&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/ScalarRepl/2003-10-29-ArrayProblem.ll (original)
+++ llvm/trunk/test/Transforms/ScalarRepl/2003-10-29-ArrayProblem.ll Fri Aug 26 15:09:48 2011
@@ -1,4 +1,4 @@
-; RUN: opt < %s -scalarrepl -S | grep {alloca %T}
+; RUN: opt < %s -scalarrepl -S | grep {alloca %%T}
 
 %T = type { [80 x i8], i32, i32 }
 declare i32 @.callback_1(i8*)





More information about the llvm-commits mailing list