diff options
author | Michael Hirsch, Ph.D <scivision@users.noreply.github.com> | 2019-01-28 15:42:42 -0500 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-01-29 22:06:11 +0200 |
commit | da34bea893b3b309800e0f03021a99ee58c599d6 (patch) | |
tree | fe58634de2ad20678a25292571f5bd2cfdb64847 /run_unittests.py | |
parent | 4e31ca3abeecf0591cccc7052da34c2735759030 (diff) | |
download | meson-da34bea893b3b309800e0f03021a99ee58c599d6.zip meson-da34bea893b3b309800e0f03021a99ee58c599d6.tar.gz meson-da34bea893b3b309800e0f03021a99ee58c599d6.tar.bz2 |
pep8 py37
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-x | run_unittests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/run_unittests.py b/run_unittests.py index 34a9a95..16de565 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -4695,9 +4695,9 @@ endian = 'little' testdir = os.path.join(self.unit_test_dir, '42 rpath order') self.init(testdir) if is_osx(): - rpathre = re.compile('-rpath,.*/subprojects/sub1.*-rpath,.*/subprojects/sub2') + rpathre = re.compile(r'-rpath,.*/subprojects/sub1.*-rpath,.*/subprojects/sub2') else: - rpathre = re.compile('-rpath,\$\$ORIGIN/subprojects/sub1:\$\$ORIGIN/subprojects/sub2') + rpathre = re.compile(r'-rpath,\$\$ORIGIN/subprojects/sub1:\$\$ORIGIN/subprojects/sub2') with open(os.path.join(self.builddir, 'build.ninja')) as bfile: for line in bfile: if '-rpath' in line: |