aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_pstore.rb
diff options
context:
space:
mode:
authorNAKAMURA Usaku <usa@ruby-lang.org>2019-08-05 12:52:14 +0900
committerNAKAMURA Usaku <usa@ruby-lang.org>2019-08-05 12:52:14 +0900
commit2403f9ac3af170ce0107a709a9cb510fe0501648 (patch)
treef92e867727faaee7791791f56ea4c22381a5a9fe /test/test_pstore.rb
parent6a265278b56eb3f0bab84fbed0c302f4c5ea8c6d (diff)
downloadruby-2403f9ac3af170ce0107a709a9cb510fe0501648.tar.gz
Expand the timeout of `test_pstore_files_are_accessed_as_binary_files`
Sometimes causes timeout error on mswin CI
Diffstat (limited to 'test/test_pstore.rb')
-rw-r--r--test/test_pstore.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_pstore.rb b/test/test_pstore.rb
index 9d9e8565ec..52b74f3775 100644
--- a/test/test_pstore.rb
+++ b/test/test_pstore.rb
@@ -133,7 +133,7 @@ class PStoreTest < Test::Unit::TestCase
def test_pstore_files_are_accessed_as_binary_files
bug5311 = '[ruby-core:39503]'
n = 128
- assert_in_out_err(["-Eutf-8:utf-8", "-rpstore", "-", @pstore_file], <<-SRC, [bug5311], [], bug5311, timeout: 15)
+ assert_in_out_err(["-Eutf-8:utf-8", "-rpstore", "-", @pstore_file], <<-SRC, [bug5311], [], bug5311, timeout: 30)
@pstore = PStore.new(ARGV[0])
(1..#{n}).each do |i|
@pstore.transaction {@pstore["Key\#{i}"] = "value \#{i}"}