aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Mensinger <daniel@mensinger-ka.de>2019-02-01 10:57:14 +0100
committerJussi Pakkanen <jpakkane@gmail.com>2019-02-04 20:25:03 +0100
commit69cb314718a96456284749ecb7b1138c3900d8b6 (patch)
treea6b4cca24357bf6e5d603a93e8c237d4cfcd8d91
parent08757dcdfd9ff3c9e79f448ce1ab796ca7d21cf0 (diff)
downloadmeson-69cb314718a96456284749ecb7b1138c3900d8b6.zip
meson-69cb314718a96456284749ecb7b1138c3900d8b6.tar.gz
meson-69cb314718a96456284749ecb7b1138c3900d8b6.tar.bz2
Fix introspection test case for solaris (fixes #4866)
-rwxr-xr-xrun_unittests.py2
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']