diff options
author | Ran Benita <ran@unusedvar.com> | 2020-07-22 11:47:15 +0300 |
---|---|---|
committer | Ran Benita <ran@unusedvar.com> | 2020-07-22 13:45:17 +0300 |
commit | fa300b24d2abe0f300267a7c4a4c1e9883401e92 (patch) | |
tree | a8331f67f4b10075cd468fb7c7b10c515e466733 /meson.build | |
parent | d4a17915db7987c7e07a364675f19671c13f54e7 (diff) | |
download | xorg-lib-libxkbcommon-fa300b24d2abe0f300267a7c4a4c1e9883401e92.tar.gz |
test: fix Windows CI by rewriting symbols-leak-test from bash to python
The CI started installing some wrapper instead of a real bash which is
what gets found.
See:
https://github.com/actions/virtual-environments/pull/1081
Given meson is written in python, it should always be available
hopefully.
Disabled valgrind wrapper for now because it now also applies to the
python interpreter which leaks like a sieve.
Signed-off-by: Ran Benita <ran@unusedvar.com>
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 30ba76b..bd42210 100644 --- a/meson.build +++ b/meson.build @@ -478,7 +478,7 @@ test( ) test( 'symbols-leak-test', - find_program('test/symbols-leak-test.bash'), + find_program('test/symbols-leak-test.py'), env: test_env, ) if get_option('enable-x11') |