[compiler-rt] r299215 - Simplify test.

Rafael Espindola via llvm-commits llvm-commits at lists.llvm.org
Fri Mar 31 06:35:37 PDT 2017


Author: rafael
Date: Fri Mar 31 08:35:37 2017
New Revision: 299215

URL: http://llvm.org/viewvc/llvm-project?rev=299215&view=rev
Log:
Simplify test.

We don't need && since that is how various run lines are combined.
The redirects were not being used.

Modified:
    compiler-rt/trunk/test/asan/TestCases/Posix/closed-fds.cc

Modified: compiler-rt/trunk/test/asan/TestCases/Posix/closed-fds.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/Posix/closed-fds.cc?rev=299215&r1=299214&r2=299215&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/Posix/closed-fds.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/Posix/closed-fds.cc Fri Mar 31 08:35:37 2017
@@ -2,7 +2,8 @@
 // symbolizer still works.
 
 // RUN: rm -f %t.log.*
-// RUN: %clangxx_asan -O0 %s -o %t 2>&1 && %env_asan_opts=log_path='"%t.log"':verbosity=2 not %run %t 2>&1
+// RUN: %clangxx_asan -O0 %s -o %t
+// RUN: %env_asan_opts=log_path='"%t.log"':verbosity=2 not %run %t
 // RUN: FileCheck %s --check-prefix=CHECK-FILE < %t.log.*
 
 // FIXME: copy %t.log back from the device and re-enable on Android.




More information about the llvm-commits mailing list