diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-06-20 14:15:26 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-06-20 14:16:48 +0200 |
commit | 32dd79ba451c949f764e73004795ec07f699cdd4 (patch) | |
tree | ecb5ca278ba0a6152cd2159c472afed2e943d0e5 /uitest | |
parent | 809e2d33b45b54b4438a4c55aed93efd73d2aa49 (diff) |
MAX_WAIT turns out to be too small
...at least for my ASan+UBSan build, causing spurious 'make check' failures
Change-Id: I6871e6fbc41790de1b38b1b7757b93d349154f47
Diffstat (limited to 'uitest')
-rw-r--r-- | uitest/uitest/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/uitest/uitest/config.py b/uitest/uitest/config.py index 4ba4146a15a8..d9a86baae84b 100644 --- a/uitest/uitest/config.py +++ b/uitest/uitest/config.py @@ -9,6 +9,6 @@ use_sleep = False DEFAULT_SLEEP = 0.1 -MAX_WAIT = 30 +MAX_WAIT = 60 # vim: set shiftwidth=4 softtabstop=4 expandtab: |