mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 04:32:44 +01:00
84f0d5ac88
This will fail if you configure with e.g. -Wno-unknown-warning-option. Change it to check for 'warning:' just like we did for 'error:' in r289484. llvm-svn: 304239
8 lines
214 B
Plaintext
8 lines
214 B
Plaintext
RUN: llvm-config --cflags 2>&1 | FileCheck %s
|
|
RUN: llvm-config --cppflags 2>&1 | FileCheck %s
|
|
RUN: llvm-config --cxxflags 2>&1 | FileCheck %s
|
|
CHECK: -I
|
|
CHECK: {{[/\\]}}include
|
|
CHECK-NOT: error:
|
|
CHECK-NOT: warning:
|