diff options
author | Filipe Brandenburger <filbranden@google.com> | 2018-04-24 23:41:24 -0700 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek.chauhan@gmail.com> | 2018-06-02 04:50:32 +0000 |
commit | 862e1dd838fc2c81af9b77c6e20d5043172b9538 (patch) | |
tree | 3e2793b9621703f7076bd8d672e7c188967491a3 /run_project_tests.py | |
parent | df2f6a71e7c32a477c141808d2dfdd49df8021fc (diff) | |
download | meson-862e1dd838fc2c81af9b77c6e20d5043172b9538.zip meson-862e1dd838fc2c81af9b77c6e20d5043172b9538.tar.gz meson-862e1dd838fc2c81af9b77c6e20d5043172b9538.tar.bz2 |
Add test case for 'install_mode'
This is a simple test case, checking for installed_files.txt, which just
makes sure the syntax is accepted.
Manual tests confirmed the permissions were set correctly.
A follow up commit adds a unit test based on this directory.
Diffstat (limited to 'run_project_tests.py')
-rwxr-xr-x | run_project_tests.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/run_project_tests.py b/run_project_tests.py index 0b77a37..ad367b1 100755 --- a/run_project_tests.py +++ b/run_project_tests.py @@ -303,6 +303,8 @@ def pass_libdir_to_test(dirname): return False if '39 libdir' in dirname: return False + if '201 install_mode' in dirname: + return False return True def _run_test(testdir, test_build_dir, install_dir, extra_args, compiler, backend, flags, commands, should_fail): |