r263091 - Disable failing test and fix RUN line.

Richard Trieu via cfe-commits cfe-commits at lists.llvm.org
Wed Mar 9 20:04:13 PST 2016


Author: rtrieu
Date: Wed Mar  9 22:04:12 2016
New Revision: 263091

URL: http://llvm.org/viewvc/llvm-project?rev=263091&view=rev
Log:
Disable failing test and fix RUN line.

See https://llvm.org/bugs/show_bug.cgi?id=26894 for details.  This change
fixes the incorrect flags to Clang and the piping issue.  It also disables
the FileCheck portion of the test, which is currently failing.

Modified:
    cfe/trunk/test/CodeGen/arm_neon_intrinsics.c

Modified: cfe/trunk/test/CodeGen/arm_neon_intrinsics.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/arm_neon_intrinsics.c?rev=263091&r1=263090&r2=263091&view=diff
==============================================================================
--- cfe/trunk/test/CodeGen/arm_neon_intrinsics.c (original)
+++ cfe/trunk/test/CodeGen/arm_neon_intrinsics.c Wed Mar  9 22:04:12 2016
@@ -1,6 +1,7 @@
 // RUN: %clang_cc1 -triple thumbv7s-apple-darwin -target-abi apcs-gnu\
-// RUN:  -target-cpu swift -ffreestanding -emit-llvm -S -o - %s\
-// RUN:  opt -S -mem2reg | FileCheck %s
+// RUN:  -target-cpu swift -ffreestanding -emit-llvm -o - %s\
+// RUN:  | opt -S -mem2reg > /dev/null
+// RxUN:  | FileCheck %s
 
 // REQUIRES: long_tests
 




More information about the cfe-commits mailing list