From: Rafael Espindola Date: Sat, 22 Sep 2012 15:26:38 +0000 (+0000) Subject: Use FileCheck. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0d8ecf3a455a77027c55b050a63bec7ee842c1b5;p=clang Use FileCheck. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@164462 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Driver/clang-translation.c b/test/Driver/clang-translation.c index 699510faa2..34c56bc60e 100644 --- a/test/Driver/clang-translation.c +++ b/test/Driver/clang-translation.c @@ -1,14 +1,16 @@ -// RUN: %clang -target i386-unknown-unknown -### -S -O0 -Os %s -o %t.s -fverbose-asm -funwind-tables -fvisibility=hidden 2> %t.log -// RUN: grep '"-triple" "i386-unknown-unknown"' %t.log -// RUN: grep '"-S"' %t.log -// RUN: grep '"-disable-free"' %t.log -// RUN: grep '"-mrelocation-model" "static"' %t.log -// RUN: grep '"-mdisable-fp-elim"' %t.log -// RUN: grep '"-munwind-tables"' %t.log -// RUN: grep '"-Os"' %t.log -// RUN: grep '"-o" .*clang-translation.*' %t.log -// RUN: grep '"-masm-verbose"' %t.log -// RUN: grep '"-fvisibility" "hidden"' %t.log +// RUN: %clang -target i386-unknown-unknown -### -S -O0 -Os %s -o %t.s -fverbose-asm -funwind-tables -fvisibility=hidden 2>&1 | FileCheck -check-prefix=I386 %s +// I386: "-triple" "i386-unknown-unknown" +// I386: "-S" +// I386: "-disable-free" +// I386: "-mrelocation-model" "static" +// I386: "-mdisable-fp-elim" +// I386: "-masm-verbose" +// I386: "-munwind-tables" +// I386: "-Os" +// I386: "-fvisibility" +// I386: "hidden" +// I386: "-o" +// I386: clang-translation // RUN: %clang -target i386-apple-darwin9 -### -S %s -o %t.s 2> %t.log // RUN: grep '"-target-cpu" "yonah"' %t.log // RUN: %clang -target x86_64-apple-darwin9 -### -S %s -o %t.s 2> %t.log