diff options
| author | Jordan Rupprecht <rupprecht@google.com> | 2019-07-29 20:09:20 +0000 |
|---|---|---|
| committer | Jordan Rupprecht <rupprecht@google.com> | 2019-07-29 20:09:20 +0000 |
| commit | ab356d87be7a1bf8fce6e92d448783c8b40a2e71 (patch) | |
| tree | 01614ec7fa1921b38b02c7fcf95763e6d2b1cc55 | |
| parent | e8b659fc1ff02354438b1be0ff7016a12ec47603 (diff) | |
| download | bcm5719-llvm-ab356d87be7a1bf8fce6e92d448783c8b40a2e71.tar.gz bcm5719-llvm-ab356d87be7a1bf8fce6e92d448783c8b40a2e71.zip | |
[driver][test] Use /dev/null in as-options.s instead
llvm-svn: 367256
| -rw-r--r-- | clang/test/Driver/as-options.s | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/test/Driver/as-options.s b/clang/test/Driver/as-options.s index 8f12296e527..3a1118d1f2f 100644 --- a/clang/test/Driver/as-options.s +++ b/clang/test/Driver/as-options.s @@ -74,13 +74,13 @@ // -Wa flags shouldn't cause warnings without an assembler stage with // -fno-integrated-as either. // RUN: %clang -Wa,-mno-warn-deprecated -fno-integrated-as -x c++ %s -S 2>&1 \ -// RUN: -o %t.o \ +// RUN: -o /dev/null \ // RUN: | FileCheck --check-prefix=NOWARN --allow-empty %s // But -m flags for the integrated assembler _should_ warn if the integrated // assembler is not in use. -// RUN: %clang -mrelax-all -fintegrated-as -x c++ %s -S -o %t.o 2>&1 \ +// RUN: %clang -mrelax-all -fintegrated-as -x c++ %s -S -o /dev/null 2>&1 \ // RUN: | FileCheck --check-prefix=NOWARN --allow-empty %s -// RUN: %clang -mrelax-all -fno-integrated-as -x c++ %s -S -o %t.o 2>&1 \ +// RUN: %clang -mrelax-all -fno-integrated-as -x c++ %s -S -o /dev/null 2>&1 \ // RUN: | FileCheck --check-prefix=WARN --allow-empty %s // WARN: unused |

