Переглянути джерело

Restore test from r211844 skipping '.file' directives

At least this answers the question of whether .bc/.ll input processed by the
frontend produces identical output to the original compilation.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@211853 91177308-0d34-0410-b5e6-96231b3b80d8
Alp Toker 11 роки тому
батько
коміт
0f771a8da0
1 змінених файлів з 8 додано та 8 видалено
  1. 8 8
      test/Frontend/ir-support.c

+ 8 - 8
test/Frontend/ir-support.c

@@ -1,19 +1,19 @@
 // Test that we can consume LLVM IR/bitcode in the frontend and produce
-// identical output to a standard compilation.
+// equivalent output to a standard compilation.
 
-// FIXME: line directives don't match the reference output on ELF so we can't compare.
+// We strip differing '.file' directives before comparing.
 
 // Reference output:
-// RUN: %clang_cc1 -S -o %t.s %s
+// RUN: %clang_cc1 -S -o - %s | grep -v '\t\.file' > %t.s
 
 // LLVM bitcode:
 // RUN: %clang_cc1 -emit-llvm-bc -o %t.bc %s
-// RUN: %clang_cc1 -S -o - %t.bc > %t.bc.s
-// RUN-FIXME: diff %t.s %t.bc.s
+// RUN: %clang_cc1 -S -o - %t.bc | grep -v '\t\.file' > %t.bc.s
+// RUN: diff %t.s %t.bc.s
 
 // LLVM IR source code:
-// RUN: %clang_cc1 -emit-llvm-bc -o %t.ll %s
-// RUN: %clang_cc1 -S -o - %t.ll > %t.ll.s
-// RUN-FIXME: diff %t.s %t.ll.s
+// RUN: %clang_cc1 -emit-llvm -o %t.ll %s
+// RUN: %clang_cc1 -S -o - %t.ll | grep -v '\t\.file' > %t.ll.s
+// RUN: diff %t.s %t.ll.s
 
 int f() { return 0; }