r210323 - Add -o /dev/null to one of the tests as it fails when run from a read-only checkout

Timur Iskhodzhanov timurrrr at google.com
Fri Jun 6 03:58:21 PDT 2014


Author: timurrrr
Date: Fri Jun  6 05:58:21 2014
New Revision: 210323

URL: http://llvm.org/viewvc/llvm-project?rev=210323&view=rev
Log:
Add -o /dev/null to one of the tests as it fails when run from a read-only checkout

Modified:
    cfe/trunk/test/Frontend/optimization-remark.c

Modified: cfe/trunk/test/Frontend/optimization-remark.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Frontend/optimization-remark.c?rev=210323&r1=210322&r2=210323&view=diff
==============================================================================
--- cfe/trunk/test/Frontend/optimization-remark.c (original)
+++ cfe/trunk/test/Frontend/optimization-remark.c Fri Jun  6 05:58:21 2014
@@ -3,8 +3,8 @@
 // always trigger the inliner, so it should be independent of the
 // optimization level.
 
-// RUN: %clang_cc1 %s -Rpass=inline -Rpass-analysis=inline -Rpass-missed=inline -O0 -gline-tables-only -emit-llvm-only -verify -S
-// RUN: %clang_cc1 %s -DNDEBUG -Rpass=inline -emit-llvm-only -verify -S
+// RUN: %clang_cc1 %s -Rpass=inline -Rpass-analysis=inline -Rpass-missed=inline -O0 -gline-tables-only -emit-llvm-only -verify -S -o /dev/null
+// RUN: %clang_cc1 %s -DNDEBUG -Rpass=inline -emit-llvm-only -verify -S -o /dev/null
 
 int foo(int x, int y) __attribute__((always_inline));
 int foo(int x, int y) { return x + y; }





More information about the cfe-commits mailing list