r331318 - 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.

Douglas Yung via cfe-commits cfe-commits at lists.llvm.org
Tue May 1 16:32:09 PDT 2018


Author: dyung
Date: Tue May  1 16:32:09 2018
New Revision: 331318

URL: http://llvm.org/viewvc/llvm-project?rev=331318&view=rev
Log:
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.


Modified:
    cfe/trunk/test/Driver/config-file4.c

Modified: cfe/trunk/test/Driver/config-file4.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Driver/config-file4.c?rev=331318&r1=331317&r2=331318&view=diff
==============================================================================
--- cfe/trunk/test/Driver/config-file4.c (original)
+++ cfe/trunk/test/Driver/config-file4.c Tue May  1 16:32:09 2018
@@ -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




More information about the cfe-commits mailing list