diff options
author | Daniel Mensinger <daniel@mensinger-ka.de> | 2019-02-01 10:57:14 +0100 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-02-04 20:25:03 +0100 |
commit | 69cb314718a96456284749ecb7b1138c3900d8b6 (patch) | |
tree | a6b4cca24357bf6e5d603a93e8c237d4cfcd8d91 | |
parent | 08757dcdfd9ff3c9e79f448ce1ab796ca7d21cf0 (diff) | |
download | meson-69cb314718a96456284749ecb7b1138c3900d8b6.zip meson-69cb314718a96456284749ecb7b1138c3900d8b6.tar.gz meson-69cb314718a96456284749ecb7b1138c3900d8b6.tar.bz2 |
Fix introspection test case for solaris (fixes #4866)
-rwxr-xr-x | run_unittests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run_unittests.py b/run_unittests.py index bc827bc..9525b01 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -3351,7 +3351,7 @@ recommended as it is not supported on some platforms''') # Check buildsystem_files bs_files = ['meson.build', 'sharedlib/meson.build', 'staticlib/meson.build'] bs_files = [os.path.join(testdir, x) for x in bs_files] - self.assertPathListEqual(res['buildsystem_files'], bs_files) + self.assertPathListEqual(list(sorted(res['buildsystem_files'])), list(sorted(bs_files))) # Check dependencies dependencies_to_find = ['threads'] |