From: Eric Liu Date: Mon, 14 May 2018 12:07:56 +0000 (+0000) Subject: Redirect output to /dev/null in the tests added in r332160. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=077a4f200f8c007fd3b8fc34fc7e802d7cb31859;p=clang Redirect output to /dev/null in the tests added in r332160. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@332236 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Driver/clang-abi-compat.cpp b/test/Driver/clang-abi-compat.cpp index afa536c694..7433c74b82 100644 --- a/test/Driver/clang-abi-compat.cpp +++ b/test/Driver/clang-abi-compat.cpp @@ -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