summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlp Toker <alp@nuanti.com>2014-06-27 02:35:57 +0000
committerAlp Toker <alp@nuanti.com>2014-06-27 02:35:57 +0000
commit75ac8855538dd2211bd5f653945fb42f583d6d91 (patch)
tree2c7458d1fab1b20521bf8940132ffecadd4f21f4
parent71a62fbfeaef46dc5cd7030e61a5b2014fbb6cb6 (diff)
downloadclang-75ac8855538dd2211bd5f653945fb42f583d6d91.tar.gz
clang-75ac8855538dd2211bd5f653945fb42f583d6d91.tar.bz2
clang-75ac8855538dd2211bd5f653945fb42f583d6d91.tar.xz
Partially disable test from r211844
ELF assembly contains .line directives that differ based on the input filename. Weaken the test while considering options. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@211849 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/Frontend/ir-support.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/Frontend/ir-support.c b/test/Frontend/ir-support.c
index 3e1089b965..3a526caff3 100644
--- a/test/Frontend/ir-support.c
+++ b/test/Frontend/ir-support.c
@@ -1,17 +1,19 @@
// Test that we can consume LLVM IR/bitcode in the frontend and produce
// identical output to a standard compilation.
+// FIXME: line directives don't match the reference output on ELF so we can't compare.
+
// Reference output:
// RUN: %clang_cc1 -S -o %t.s %s
// LLVM bitcode:
// RUN: %clang_cc1 -emit-llvm-bc -o %t.bc %s
// RUN: %clang_cc1 -S -o - %t.bc > %t.bc.s
-// RUN: diff %t.s %t.bc.s
+// RUN-FIXME: 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: diff %t.s %t.ll.s
+// RUN-FIXME: diff %t.s %t.ll.s
int f() { return 0; }