speed-regression.tcl: command line options to select tests, data size, and number of requests.
This commit is contained in:
parent
55758a5fab
commit
d5a8018287
@ -108,4 +108,23 @@ if {!$is_not_running} {
|
|||||||
exit 1
|
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
|
main
|
||||||
|
Loading…
x
Reference in New Issue
Block a user