From: Hans Wennborg Date: Mon, 18 Nov 2013 21:58:33 +0000 (+0000) Subject: Make test/Driver/clang_f_opts.c not write to the test dir X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6932152951539e7dc28edad582d0cb193ac4e166;p=clang 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. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@195047 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Driver/clang_f_opts.c b/test/Driver/clang_f_opts.c index e6867ab18a..3f3a8f6db0 100644 --- a/test/Driver/clang_f_opts.c +++ b/test/Driver/clang_f_opts.c @@ -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. diff --git a/test/Frontend/invalid-o-level.c b/test/Frontend/invalid-o-level.c index 1b800188e0..1b5c51f65a 100644 --- a/test/Frontend/invalid-o-level.c +++ b/test/Frontend/invalid-o-level.c @@ -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.