r332236 - Redirect output to /dev/null in the tests added in r332160.

Eric Liu via cfe-commits cfe-commits at lists.llvm.org
Mon May 14 05:07:56 PDT 2018


Author: ioeric
Date: Mon May 14 05:07:56 2018
New Revision: 332236

URL: http://llvm.org/viewvc/llvm-project?rev=332236&view=rev
Log:
Redirect output to /dev/null in the tests added in r332160.

Modified:
    cfe/trunk/test/Driver/clang-abi-compat.cpp

Modified: cfe/trunk/test/Driver/clang-abi-compat.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Driver/clang-abi-compat.cpp?rev=332236&r1=332235&r2=332236&view=diff
==============================================================================
--- cfe/trunk/test/Driver/clang-abi-compat.cpp (original)
+++ cfe/trunk/test/Driver/clang-abi-compat.cpp Mon May 14 05:07:56 2018
@@ -1,6 +1,6 @@
 // PS4 target requires clang ABI version 6, check that a warning is emitted when a version other than 6 is requested.
-// RUN: %clang -S --target=x86_64-scei-ps4 -fclang-abi-compat=4 %s 2>&1 | FileCheck %s -check-prefix=CHECK-WARNING
-// RUN: %clang -S --target=x86_64-scei-ps4 -fclang-abi-compat=latest %s 2>&1 | FileCheck %s -check-prefix=CHECK-WARNING
+// RUN: %clang -S --target=x86_64-scei-ps4 -fclang-abi-compat=4 %s -o /dev/null 2>&1 | FileCheck %s -check-prefix=CHECK-WARNING
+// RUN: %clang -S --target=x86_64-scei-ps4 -fclang-abi-compat=latest %s -o /dev/null 2>&1 | FileCheck %s -check-prefix=CHECK-WARNING
 
 // REQUIRES: x86-registered-target
 




More information about the cfe-commits mailing list