forked from OSchip/llvm-project
Make test/Driver/clang_f_opts.c not write to the test dir
After r195009, the test would write a .o file to the test dir. Send that to /dev/null instead. Also fix the typo in test/Frontend/invalid-o-level.c. llvm-svn: 195047
This commit is contained in:
parent
dcbe35bad5
commit
be5df46f26
|
@ -110,7 +110,7 @@
|
|||
// CHECK-MAX-O: warning: -O4 is equivalent to -O3
|
||||
// CHECK-MAX-O: -O3
|
||||
|
||||
// RUN: %clang -S -O20 %s 2>&1 | FileCheck -check-prefix=CHECK-INVALID-O %s
|
||||
// RUN: %clang -S -O20 -o /dev/null %s 2>&1 | FileCheck -check-prefix=CHECK-INVALID-O %s
|
||||
// CHECK-INVALID-O: warning: optimization level '-O20' is unsupported; using '-O3' instead.
|
||||
|
||||
// Test that we don't error on these.
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// RUN: %clang_cc1 %s -O900 -o /dev/nul 2> %t.log
|
||||
// RUN: %clang_cc1 %s -O900 -o /dev/null 2> %t.log
|
||||
// RUN: FileCheck %s -input-file=%t.log
|
||||
|
||||
// CHECK: warning: optimization level '-O900' is unsupported; using '-O3' instead.
|
||||
|
|
Loading…
Reference in New Issue