diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2011-12-23 17:38:34 -0500 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2011-12-23 17:38:34 -0500 |
commit | 97876f6118eadf6a2669826d68412cc020975a64 (patch) | |
tree | 009dd3d9457b3b61c7768d0ad9e64480a08e4724 /indra/llcommon/tests | |
parent | 8008d540e5177aa4fb0c802b157eec2695c8334a (diff) |
Fix sleep(0.5) to sleep(1) -- truncation to int makes that dubious.
Diffstat (limited to 'indra/llcommon/tests')
-rw-r--r-- | indra/llcommon/tests/llprocesslauncher_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/tests/llprocesslauncher_test.cpp b/indra/llcommon/tests/llprocesslauncher_test.cpp index dbbe54e9fa..4d8f850d92 100644 --- a/indra/llcommon/tests/llprocesslauncher_test.cpp +++ b/indra/llcommon/tests/llprocesslauncher_test.cpp @@ -313,7 +313,7 @@ namespace tut } // Do this once per tick, as we expect the viewer will apr_proc_other_child_refresh_all(APR_OC_REASON_RUNNING); - sleep(0.5); + sleep(1); } apr_file_close(child.in); apr_file_close(child.out); |