diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-08-08 14:46:45 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-08-08 14:46:45 -0700 |
commit | 8743d1ff4879595d8db15b702c063024d761ce81 (patch) | |
tree | 512ee00741b651465584e8afebb2760060133738 /tests/runner.py | |
parent | 3284c0b5aa51e049c1af7af038e90b9099a7b00c (diff) | |
parent | a1ff714e1a1b130f607392006e5c5ab39bdfa662 (diff) |
Merge pull request #1473 from juj/wno-warn-absolute-paths
Wno warn absolute paths
Diffstat (limited to 'tests/runner.py')
-rwxr-xr-x | tests/runner.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/runner.py b/tests/runner.py index 75b1f348..23ec07b9 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -11449,6 +11449,8 @@ int main(int argc, char const *argv[]) for args, expected in [(['-I/usr/something'], True), (['-L/usr/something'], True), + (['-I/usr/something', '-Wno-warn-absolute-paths'], False), + (['-L/usr/something', '-Wno-warn-absolute-paths'], False), (['-Isubdir/something'], False), (['-Lsubdir/something'], False), ([], False)]: |