speed-regression.tcl: command line options to select tests, data size, and number of requests.

This commit is contained in:
antirez 2011-11-07 17:18:50 +01:00
parent 55758a5fab
commit d5a8018287

View File

@ -108,4 +108,23 @@ if {!$is_not_running} {
exit 1
}
# parse arguments
for {set j 0} {$j < [llength $argv]} {incr j} {
set opt [lindex $argv $j]
set arg [lindex $argv [expr $j+1]]
if {$opt eq {--tests}} {
set ::tests $arg
incr j
} elseif {$opt eq {--datasize}} {
set ::datasize $arg
incr j
} elseif {$opt eq {--requests}} {
set ::requests $arg
incr j
} else {
puts "Wrong argument: $opt"
exit 1
}
}
main