Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
bb7aa177
Commit
bb7aa177
authored
Feb 05, 2013
by
Salvatore Sanfilippo
Browse files
Merge pull request #906 from jbergstroem/tclsh-agnostic
Make redis test suite tcl version agnostic, v2
parents
58463e05
11542835
Changes
4
Hide whitespace changes
Inline
Side-by-side
runtest
View file @
bb7aa177
#!/bin/sh
TCL
=
tclsh8.5
which
$TCL
if
[
"
$?
"
!=
"0"
]
TCL_VERSIONS
=
"8.5 8.6"
TCLSH
=
""
for
VERSION
in
$TCL_VERSIONS
;
do
TCL
=
`
which tclsh
$VERSION
2>/dev/null
`
&&
TCLSH
=
$TCL
done
if
[
-z
$TCLSH
]
then
echo
"You need
'
$TCL
'
in order to run the Redis test"
echo
"You need
tcl 8.5 or newer
in order to run the Redis test"
exit
1
fi
$TCL
tests/test_helper.tcl
$*
$TCL
SH
tests/test_helper.tcl
$*
tests/integration/replication-4.tcl
View file @
bb7aa177
proc start_bg_complex_data
{
host port db ops
}
{
exec tclsh8.5 tests/helpers/bg_complex_data.tcl $host $port $db $ops &
set tclsh
[
info nameofexecutable
]
exec $tclsh tests/helpers/bg_complex_data.tcl $host $port $db $ops &
}
proc stop_bg_complex_data
{
handle
}
{
...
...
tests/integration/replication.tcl
View file @
bb7aa177
...
...
@@ -78,7 +78,8 @@ start_server {tags {"repl"}} {
}
proc start_write_load
{
host port seconds
}
{
exec tclsh8.5 tests/helpers/gen_write_load.tcl $host $port $seconds &
set tclsh
[
info nameofexecutable
]
exec $tclsh tests/helpers/gen_write_load.tcl $host $port $seconds &
}
proc stop_write_load
{
handle
}
{
...
...
tests/test_helper.tcl
View file @
bb7aa177
...
...
@@ -2,6 +2,8 @@
# This softare is released under the BSD License. See the COPYING file for
# more information.
package require Tcl 8.5
set tcl_precision 17
source tests/support/redis.tcl
source tests/support/server.tcl
...
...
@@ -176,6 +178,7 @@ proc find_available_port start {
proc test_server_main
{}
{
cleanup
set tclsh
[
info nameofexecutable
]
# Open a listening socket, trying different ports in order to find a
# non busy one.
set port
[
find_available_port 11111
]
...
...
@@ -189,7 +192,7 @@ proc test_server_main {} {
set start_port
[
expr
{
$::port
+100
}]
for
{
set j 0
}
{
$j
< $::numclients
}
{
incr j
}
{
set start_port
[
find_available_port $start_port
]
set p
[
exec tclsh
8.5
[
info script
]
{*}
$::argv
\
set p
[
exec
$
tclsh
[
info script
]
{*}
$::argv
\
--client $port --port $start_port &
]
lappend ::clients_pids $p
incr start_port 10
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment