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:
Hans Wennborg 2013-11-18 21:58:33 +00:00
parent dcbe35bad5
commit be5df46f26
2 changed files with 2 additions and 2 deletions

View File

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

View File

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