From: Douglas Yung Date: Tue, 1 May 2018 23:32:09 +0000 (+0000) Subject: This test fails if there is no integrated assembler, so change the -c option to ... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fd51227af0392ddc88aadb45b928387a9fad1ec8;p=clang This test fails if there is no integrated assembler, so change the -c option to -S as it is not important to the test and allows it to pass when there is no integrated assembler. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@331318 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Driver/config-file4.c b/test/Driver/config-file4.c index 9231ab64e1..19ef7d50cd 100644 --- a/test/Driver/config-file4.c +++ b/test/Driver/config-file4.c @@ -1,2 +1,2 @@ -// RUN: %clang --config %S/Inputs/empty.cfg -Wall -Wextra -Wformat -Wstrict-aliasing -Wshadow -Wpacked -Winline -Wimplicit-function-declaration -c %s -O2 -o /dev/null -v 2>&1 | FileCheck %s -check-prefix PR37196 +// RUN: %clang --config %S/Inputs/empty.cfg -Wall -Wextra -Wformat -Wstrict-aliasing -Wshadow -Wpacked -Winline -Wimplicit-function-declaration -S %s -O2 -o /dev/null -v 2>&1 | FileCheck %s -check-prefix PR37196 // PR37196: Configuration file: {{.*}}empty.cfg