diff options
Diffstat (limited to 'test/Frontend/invalid-o-level.c')
-rw-r--r-- | test/Frontend/invalid-o-level.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/test/Frontend/invalid-o-level.c b/test/Frontend/invalid-o-level.c index 73be9b1c21ff..0314448b0ff2 100644 --- a/test/Frontend/invalid-o-level.c +++ b/test/Frontend/invalid-o-level.c @@ -1,4 +1,5 @@ -// RUN: %clang_cc1 %s -O900 -o /dev/null 2> %t.log -// RUN: FileCheck %s -input-file=%t.log +// RUN: %clang_cc1 %s -O900 -o /dev/null 2>&1 | FileCheck %s -// CHECK: warning: optimization level '-O900' is not supported; using '-O3' instead +// RUN: %clang_cc1 %s -O8 -o /dev/null 2>&1 | FileCheck %s + +// CHECK: warning: optimization level '-O{{.*}}' is not supported; using '-O3' instead |