sweeper/webif/plugin/sweeper/test

13 lines
165 B
Plaintext
Raw Normal View History

2013-07-12 22:43:15 +00:00
#!/mod/bin/jimsh
source /mod/webif/plugin/sweeper/harness.jim
2013-07-12 22:43:15 +00:00
if {![llength $argv]} {
2017-01-05 22:30:07 +00:00
::sweeper::run
} else {
2017-01-05 22:30:07 +00:00
foreach dir $argv {
::sweeper::rundir $dir
}
2013-07-12 22:43:15 +00:00
}
2014-06-03 17:23:03 +00:00