diff options
author | Jan-Marek Glogowski <glogow@fbihome.de> | 2016-09-14 15:33:54 +0200 |
---|---|---|
committer | Jan-Marek Glogowski <glogow@fbihome.de> | 2017-07-13 12:10:23 +0200 |
commit | 7a1c1699a61a77d0228417da9922812c9b893b9d (patch) | |
tree | 9ded7bd1fe28e211df290090a8b49690696fcc63 /solenv/gdb/libreoffice | |
parent | 503eba23c9a199583eddee9e169a4fddbecf416f (diff) |
Run Idle tasks immediatly
There is really no reason to wait a millisecond for an idle.
Change-Id: I7665d5f2e7d6ba3e01290a692bbc8e42c36b9986
Diffstat (limited to 'solenv/gdb/libreoffice')
-rw-r--r-- | solenv/gdb/libreoffice/vcl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/gdb/libreoffice/vcl.py b/solenv/gdb/libreoffice/vcl.py index bcd10ae157e6..d8bac0b84331 100644 --- a/solenv/gdb/libreoffice/vcl.py +++ b/solenv/gdb/libreoffice/vcl.py @@ -51,7 +51,7 @@ class ImplSchedulerDataPrinter(object): if (task_type == "Timer"): res = "{}: {}ms".format(res, timer['mnTimeout']) else: - assert 1 == timer['mnTimeout'], "Idle with timeout == {}".format( timer['mnTimeout'] ) + assert 0 == timer['mnTimeout'], "Idle with timeout == {}".format( timer['mnTimeout'] ) return res else: assert gdbobj['mbDelete'], "No task set and not marked for deletion!" |