diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-04-15 10:26:05 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-04-15 10:26:05 +0000 |
commit | a9338b6195d9fb6a1c7e16680e6e9e2dad177a38 (patch) | |
tree | b3fb4b4990fdb0b4e77611bef5c8fb8816d0663f /test | |
parent | b9e8a948bba5361264d9f40107312cdf78573144 (diff) | |
download | external_llvm-a9338b6195d9fb6a1c7e16680e6e9e2dad177a38.zip external_llvm-a9338b6195d9fb6a1c7e16680e6e9e2dad177a38.tar.gz external_llvm-a9338b6195d9fb6a1c7e16680e6e9e2dad177a38.tar.bz2 |
For PR1319: Upgrade to new test harness
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36070 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/ExecutionEngine/2004-12-04-LazyCompileFuncs.ll | 4 | ||||
-rw-r--r-- | test/ExecutionEngine/dg.exp | 4 | ||||
-rw-r--r-- | test/Other/2003-02-19-LoopInfoNestingBug.ll | 3 | ||||
-rw-r--r-- | test/Other/dg.exp | 4 | ||||
-rw-r--r-- | test/TableGen/Include.td | 2 | ||||
-rw-r--r-- | test/TableGen/LazyChange.td | 2 | ||||
-rw-r--r-- | test/TableGen/MultiClass.td | 3 | ||||
-rw-r--r-- | test/TableGen/dg.exp | 4 | ||||
-rw-r--r-- | test/Verifier/2006-10-15-AddrLabel.ll | 5 | ||||
-rw-r--r-- | test/Verifier/dg.exp | 4 |
10 files changed, 17 insertions, 18 deletions
diff --git a/test/ExecutionEngine/2004-12-04-LazyCompileFuncs.ll b/test/ExecutionEngine/2004-12-04-LazyCompileFuncs.ll index 34c2d03..e266be9 100644 --- a/test/ExecutionEngine/2004-12-04-LazyCompileFuncs.ll +++ b/test/ExecutionEngine/2004-12-04-LazyCompileFuncs.ll @@ -1,5 +1,5 @@ -; RUN: llvm-as -f %s -o %t.bc -; RUN: lli -debug-only=jit %t.bc 2>&1 | not grep 'Finished CodeGen of .*Function: F' +; RUN: llvm-upgrade %s | llvm-as -f -o %t.bc +; RUN: lli -debug-only=jit %t.bc |& not grep {Finished CodeGen of .*Function: F} %.str_1 = internal constant [7 x sbyte] c"IN F!\0A\00" ; <[7 x sbyte]*> [#uses=1] %.str_2 = internal constant [7 x sbyte] c"IN G!\0A\00" ; <[7 x sbyte]*> [#uses=1] diff --git a/test/ExecutionEngine/dg.exp b/test/ExecutionEngine/dg.exp index ff34508..879685c 100644 --- a/test/ExecutionEngine/dg.exp +++ b/test/ExecutionEngine/dg.exp @@ -1,3 +1,3 @@ -load_lib llvm-dg.exp +load_lib llvm.exp -llvm-runtest [lsort [glob -nocomplain $srcdir/$subdir/*.{ll,llx,c,cpp,tr}]] +RunLLVMTests [lsort [glob -nocomplain $srcdir/$subdir/*.{ll,llx,c,cpp,tr}]] diff --git a/test/Other/2003-02-19-LoopInfoNestingBug.ll b/test/Other/2003-02-19-LoopInfoNestingBug.ll index bf71f5f..ebad6ba 100644 --- a/test/Other/2003-02-19-LoopInfoNestingBug.ll +++ b/test/Other/2003-02-19-LoopInfoNestingBug.ll @@ -2,7 +2,8 @@ ; figure out that loop "Inner" should be nested inside of leep "LoopHeader", ; and instead nests it just inside loop "Top" ; -; RUN: llvm-upgrade < %s | llvm-as | opt -analyze -loops | grep ' Loop Containing:[ ]*%Inner' +; RUN: llvm-upgrade < %s | llvm-as | opt -analyze -loops | \ +; RUN: grep { Loop Containing:\[ \]*%Inner} ; implementation diff --git a/test/Other/dg.exp b/test/Other/dg.exp index ff34508..879685c 100644 --- a/test/Other/dg.exp +++ b/test/Other/dg.exp @@ -1,3 +1,3 @@ -load_lib llvm-dg.exp +load_lib llvm.exp -llvm-runtest [lsort [glob -nocomplain $srcdir/$subdir/*.{ll,llx,c,cpp,tr}]] +RunLLVMTests [lsort [glob -nocomplain $srcdir/$subdir/*.{ll,llx,c,cpp,tr}]] diff --git a/test/TableGen/Include.td b/test/TableGen/Include.td index fe9ecb0..29ed515 100644 --- a/test/TableGen/Include.td +++ b/test/TableGen/Include.td @@ -1,4 +1,4 @@ -// RUN: tblgen -I `dirname %s` %s +// RUN: tblgen -I %p %s def BeforeInclude; include "Include.inc" diff --git a/test/TableGen/LazyChange.td b/test/TableGen/LazyChange.td index c3e54de..145fd0b 100644 --- a/test/TableGen/LazyChange.td +++ b/test/TableGen/LazyChange.td @@ -1,4 +1,4 @@ -// RUN: tblgen %s | grep 'int Y = 3' +// RUN: tblgen %s | grep {int Y = 3} class C { diff --git a/test/TableGen/MultiClass.td b/test/TableGen/MultiClass.td index 2840e67..41019eb 100644 --- a/test/TableGen/MultiClass.td +++ b/test/TableGen/MultiClass.td @@ -1,5 +1,4 @@ -// RUN: tblgen %s && -// RUN: tblgen %s | grep 'zing = 4' | wc -l | grep 2 +// RUN: tblgen %s | grep {zing = 4} | wc -l | grep 2 class C1<int A, string B> { int bar = A; diff --git a/test/TableGen/dg.exp b/test/TableGen/dg.exp index 8315961..f7d275a 100644 --- a/test/TableGen/dg.exp +++ b/test/TableGen/dg.exp @@ -1,3 +1,3 @@ -load_lib llvm-dg.exp +load_lib llvm.exp -llvm-runtest [lsort [glob -nocomplain $srcdir/$subdir/*.{td}]] +RunLLVMTests [lsort [glob -nocomplain $srcdir/$subdir/*.{td}]] diff --git a/test/Verifier/2006-10-15-AddrLabel.ll b/test/Verifier/2006-10-15-AddrLabel.ll index fb9acf1..173b0cf 100644 --- a/test/Verifier/2006-10-15-AddrLabel.ll +++ b/test/Verifier/2006-10-15-AddrLabel.ll @@ -1,6 +1,5 @@ -; RUN: not llvm-as 2>&1 < %s > /dev/null && -; RUN: llvm-as 2>&1 < %s > /dev/null | \ -; RUN: grep 'Cannot form a pointer to a basic block' +; RUN: ignore llvm-as < %s > /dev/null |& \ +; RUN: grep {Cannot form a pointer to a basic block} define i32 @main() { %foo = call i8* %llvm.stacksave() diff --git a/test/Verifier/dg.exp b/test/Verifier/dg.exp index ff34508..879685c 100644 --- a/test/Verifier/dg.exp +++ b/test/Verifier/dg.exp @@ -1,3 +1,3 @@ -load_lib llvm-dg.exp +load_lib llvm.exp -llvm-runtest [lsort [glob -nocomplain $srcdir/$subdir/*.{ll,llx,c,cpp,tr}]] +RunLLVMTests [lsort [glob -nocomplain $srcdir/$subdir/*.{ll,llx,c,cpp,tr}]] |