[llvm] r325937 - [Test] Fix the test to output to /dev/null instead of redirecting.

Matt Davis via llvm-commits llvm-commits at lists.llvm.org
Fri Feb 23 11:03:04 PST 2018


Author: mattd
Date: Fri Feb 23 11:03:04 2018
New Revision: 325937

URL: http://llvm.org/viewvc/llvm-project?rev=325937&view=rev
Log:
[Test] Fix the test to output to /dev/null instead of redirecting.

The redirection was confusing the windows build machine.


Modified:
    llvm/trunk/test/Transforms/LCSSA/avoid-intrinsics-in-catchswitch.ll

Modified: llvm/trunk/test/Transforms/LCSSA/avoid-intrinsics-in-catchswitch.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/LCSSA/avoid-intrinsics-in-catchswitch.ll?rev=325937&r1=325936&r2=325937&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/LCSSA/avoid-intrinsics-in-catchswitch.ll (original)
+++ llvm/trunk/test/Transforms/LCSSA/avoid-intrinsics-in-catchswitch.ll Fri Feb 23 11:03:04 2018
@@ -1,4 +1,4 @@
-; RUN: opt < %s -debugify -licm -S 1>/dev/null
+; RUN: opt < %s -debugify -licm -S -o /dev/null
 ;
 ; The following test is from https://bugs.llvm.org/show_bug.cgi?id=36238
 ; This test should pass (not assert or fault). The error that originally




More information about the llvm-commits mailing list