r211849 - Partially disable test from r211844

Alp Toker alp at nuanti.com
Thu Jun 26 19:35:57 PDT 2014


Author: alp
Date: Thu Jun 26 21:35:57 2014
New Revision: 211849

URL: http://llvm.org/viewvc/llvm-project?rev=211849&view=rev
Log:
Partially disable test from r211844

ELF assembly contains .line directives that differ based on the input filename.
Weaken the test while considering options.

Modified:
    cfe/trunk/test/Frontend/ir-support.c

Modified: cfe/trunk/test/Frontend/ir-support.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Frontend/ir-support.c?rev=211849&r1=211848&r2=211849&view=diff
==============================================================================
--- cfe/trunk/test/Frontend/ir-support.c (original)
+++ cfe/trunk/test/Frontend/ir-support.c Thu Jun 26 21:35:57 2014
@@ -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; }





More information about the cfe-commits mailing list