diff options
author | Yonggang Luo <luoyonggang@gmail.com> | 2020-09-23 23:07:07 +0800 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2020-09-27 22:32:52 +0300 |
commit | 75433bee74b00cdbc53ae1e30fbd9fc578a9c4ad (patch) | |
tree | 9f98bac108531f19c1baa12c7691191505db21db | |
parent | 15761e78d2779e9614f59e873b3d250e436c977d (diff) | |
download | meson-75433bee74b00cdbc53ae1e30fbd9fc578a9c4ad.zip meson-75433bee74b00cdbc53ae1e30fbd9fc578a9c4ad.tar.gz meson-75433bee74b00cdbc53ae1e30fbd9fc578a9c4ad.tar.bz2 |
Fixes meson test timeout on windows
```
2020-09-23T01:25:14.7849070Z
2020-09-23T01:25:14.7849592Z 1/5 Boost linktest TIMEOUT 30.16s
2020-09-23T01:25:14.7849811Z
2020-09-23T01:25:14.7850027Z --- command ---
2020-09-23T01:25:14.7850281Z 01:24:30 D:\a\1\s\b 125f976e40\linkedexe.exe
2020-09-23T01:25:14.7850561Z -------
2020-09-23T01:25:14.7850693Z
2020-09-23T01:25:14.7850947Z 2/5 Boost UTF test TIMEOUT 31.15s
2020-09-23T01:25:14.7851141Z
2020-09-23T01:25:14.7851347Z --- command ---
2020-09-23T01:25:14.7851580Z 01:24:30 D:\a\1\s\b 125f976e40\utf.exe
2020-09-23T01:25:14.7851862Z --- stdout ---
2020-09-23T01:25:14.7852065Z Running 1 test case...
2020-09-23T01:25:14.7852441Z
```
Signed-off-by: Yonggang Luo <luoyonggang@gmail.com>
-rw-r--r-- | test cases/frameworks/1 boost/meson.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test cases/frameworks/1 boost/meson.build b/test cases/frameworks/1 boost/meson.build index 5a2e1a1..83570f0 100644 --- a/test cases/frameworks/1 boost/meson.build +++ b/test cases/frameworks/1 boost/meson.build @@ -51,8 +51,8 @@ extralibexe = executable('extralibexe', 'extralib.cpp', dependencies : extralibd python2module = shared_library('python2_module', ['python_module.cpp'], dependencies: [python2dep, bpython2dep], name_prefix: '', cpp_args: ['-DMOD_NAME=python2_module']) python3module = shared_library('python3_module', ['python_module.cpp'], dependencies: [python3dep, bpython3dep], name_prefix: '', cpp_args: ['-DMOD_NAME=python3_module']) -test('Boost linktest', linkexe) -test('Boost UTF test', unitexe) +test('Boost linktest', linkexe, timeout: 60) +test('Boost UTF test', unitexe, timeout: 60) test('Boost nomod', nomodexe) if host_machine.system() != 'darwin' or s # Segfaults on macOS with dynamic linking since Boost 1.73 |