Author: Douglas Yung Date: 2020-01-14T18:58:18-08:00 New Revision: c6e69880ae4d9ce4d27bf046292a0a20c3ab3540
URL: https://github.com/llvm/llvm-project/commit/c6e69880ae4d9ce4d27bf046292a0a20c3ab3540 DIFF: https://github.com/llvm/llvm-project/commit/c6e69880ae4d9ce4d27bf046292a0a20c3ab3540.diff LOG: Modify test to use -S instead of -c so that it works when an external assembler is used that is not present. Added: Modified: clang/test/Driver/cc1-spawnprocess.c Removed: ################################################################################ diff --git a/clang/test/Driver/cc1-spawnprocess.c b/clang/test/Driver/cc1-spawnprocess.c index db13d8ce85d9..c5c16ce8513f 100644 --- a/clang/test/Driver/cc1-spawnprocess.c +++ b/clang/test/Driver/cc1-spawnprocess.c @@ -1,4 +1,4 @@ -// RUN: env CLANG_SPAWN_CC1= %clang -c %s -o /dev/null -// RUN: env CLANG_SPAWN_CC1=0 %clang -c %s -o /dev/null -// RUN: env CLANG_SPAWN_CC1=1 %clang -c %s -o /dev/null -// RUN: env CLANG_SPAWN_CC1=test not %clang -c %s -o /dev/null +// RUN: env CLANG_SPAWN_CC1= %clang -S %s -o /dev/null +// RUN: env CLANG_SPAWN_CC1=0 %clang -S %s -o /dev/null +// RUN: env CLANG_SPAWN_CC1=1 %clang -S %s -o /dev/null +// RUN: env CLANG_SPAWN_CC1=test not %clang -S %s -o /dev/null _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits