diff options
| author | Jussi Pakkanen <jpakkane@gmail.com> | 2017-06-17 13:29:13 +0300 |
|---|---|---|
| committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-06-17 13:29:13 +0300 |
| commit | 85a263a6708f865bffe77c2fe9bb5e888c466709 (patch) | |
| tree | b4d1702344d400800735cad0d72c5a87190ad956 /run_unittests.py | |
| parent | f75d39468317fa642fca264ef05c4ef7c86fd9ca (diff) | |
| download | meson-85a263a6708f865bffe77c2fe9bb5e888c466709.tar.gz | |
Failing test for -D dedupping.
Diffstat (limited to 'run_unittests.py')
| -rwxr-xr-x | run_unittests.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/run_unittests.py b/run_unittests.py index a405b01be..7e3a2f11a 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -1221,6 +1221,14 @@ int main(int argc, char **argv) { for path in rpath.split(':'): self.assertTrue(path.startswith('$ORIGIN'), msg=(each, path)) + def test_dash_d_dedup(self): + testdir = os.path.join(self.unit_test_dir, '10 d dedup') + self.init(testdir) + cmd = self.get_compdb()[0]['command'] + self.assertTrue('-D FOO -D BAR' in cmd or \ + '/D FOO /D BAR' in cmd) + + class FailureTests(BasePlatformTests): ''' |
