diff options
author | Lukas Larsson <[email protected]> | 2018-04-25 09:17:44 +0200 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2018-04-25 09:17:44 +0200 |
commit | 05d89214dd7614b7f7177a7e4409d39aea6d4491 (patch) | |
tree | 41d8ceff866575473fddd8b8528a85e40db9dd45 | |
parent | 77fcc67696c514b7fedd37720fdafe7533684e08 (diff) | |
parent | 468c3b5722034e80bbe6e47b6877b4221766bec1 (diff) | |
download | otp-05d89214dd7614b7f7177a7e4409d39aea6d4491.tar.gz otp-05d89214dd7614b7f7177a7e4409d39aea6d4491.tar.bz2 otp-05d89214dd7614b7f7177a7e4409d39aea6d4491.zip |
Merge branch 'lukas/erts/dump_SUITE_fix'
* lukas/erts/dump_SUITE_fix:
erts: Increase file read timeout for signal_abort test
-rw-r--r-- | erts/emulator/test/dump_SUITE.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/erts/emulator/test/dump_SUITE.erl b/erts/emulator/test/dump_SUITE.erl index 38fa198ea6..8d18d46d92 100644 --- a/erts/emulator/test/dump_SUITE.erl +++ b/erts/emulator/test/dump_SUITE.erl @@ -96,12 +96,12 @@ get_dump_when_done(Dump) -> {ok, #file_info{ size = Sz }} -> get_dump_when_done(Dump, Sz); {error, enoent} -> - timer:sleep(100), + timer:sleep(1000), get_dump_when_done(Dump) end. get_dump_when_done(Dump, Sz) -> - timer:sleep(100), + timer:sleep(1000), case file:read_file_info(Dump) of {ok, #file_info{ size = Sz }} -> file:read_file(Dump); |