Skip to content
Snippets Groups Projects
Commit b1d91509 authored by mechanik20051988's avatar mechanik20051988 Committed by Alexander Turenko
Browse files

test: decrease instance file name length

The maximal unix socket file length is 108 symbols on Linux, so
we should decrease file name to fit in this size.
parent 2ad64078
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,7 @@ test_run = env.new()
| ---
| ...
test_run:cmd('create server test with script="box/gh-5304-insert_during_recovery.lua"')
test_run:cmd('create server test with script="box/insert_during_recovery.lua"')
| ---
| - true
| ...
......
......@@ -3,7 +3,7 @@
env = require('test_run')
test_run = env.new()
test_run:cmd('create server test with script="box/gh-5304-insert_during_recovery.lua"')
test_run:cmd('create server test with script="box/insert_during_recovery.lua"')
test_run:cmd('start server test with args="none"')
test_run:cmd('switch test')
s1 = box.schema.space.create('temp', {temporary=true})
......
......@@ -8,7 +8,7 @@ test_run = env.new()
| ---
| ...
test_run:cmd('create server test with script="box/gh-5304-replace_during_recovery.lua"')
test_run:cmd('create server test with script="box/replace_during_recovery.lua"')
| ---
| - true
| ...
......
......@@ -3,7 +3,7 @@
env = require('test_run')
test_run = env.new()
test_run:cmd('create server test with script="box/gh-5304-replace_during_recovery.lua"')
test_run:cmd('create server test with script="box/replace_during_recovery.lua"')
test_run:cmd('start server test')
test_run:cmd('switch test')
s0 = box.schema.space.create('test')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment