source:
examples/scaling_tests/haystack/run_test
@
880e924
Last change on this file since 880e924 was 373bf68, checked in by , 12 years ago | |
---|---|
|
|
File size: 180 bytes |
Line | |
---|---|
1 | #!/bin/sh |
2 | |
3 | pwd=`pwd` |
4 | |
5 | for i in `ls -1` ; do |
6 | if [ -d $i ]; then |
7 | printf " ...running on %s\n" "$i" >& 2; |
8 | cd $i |
9 | ./run_test |
10 | cd $pwd |
11 | fi |
12 | done |
13 | |
14 |
Note: See TracBrowser
for help on using the repository browser.