diff options
author | Chris Lattner <sabre@nondot.org> | 2009-07-08 20:50:34 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-07-08 20:50:34 +0000 |
commit | d0110a5a980f7d4900bcfda781fbea10d2e178e8 (patch) | |
tree | db412973e0b3a18c94b6340b1ef0d461e64f2b6f /test/MC/AsmParser/directive_org.s | |
parent | 25b24d3ddd401d822601139940b7ea1de4ab3169 (diff) | |
download | external_llvm-d0110a5a980f7d4900bcfda781fbea10d2e178e8.zip external_llvm-d0110a5a980f7d4900bcfda781fbea10d2e178e8.tar.gz external_llvm-d0110a5a980f7d4900bcfda781fbea10d2e178e8.tar.bz2 |
Switch all the MC tests to use FileCheck.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75039 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/MC/AsmParser/directive_org.s')
-rw-r--r-- | test/MC/AsmParser/directive_org.s | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/MC/AsmParser/directive_org.s b/test/MC/AsmParser/directive_org.s index ac50f63..4de82d5 100644 --- a/test/MC/AsmParser/directive_org.s +++ b/test/MC/AsmParser/directive_org.s @@ -1,11 +1,11 @@ -# RUN: llvm-mc %s > %t +# RUN: llvm-mc %s | FileCheck %s -# RUN: grep -A 2 TEST0 %t > %t2 -# RUN: grep ".org 1, 0" %t2 | count 1 +# CHECK: TEST0: +# CHECK: .org 1, 0 TEST0: .org 1 -# RUN: grep -A 2 TEST1 %t > %t2 -# RUN: grep ".org 1, 3" %t2 | count 1 +# CHECK: TEST1: +# CHECK: .org 1, 3 TEST1: .org 1, 3 |