source: examples/scaling_tests/daisychain/run_test @ 2485307

mei_rt2mei_rt2_fix_1
Last change on this file since 2485307 was 373bf68, checked in by Mei <mei@…>, 12 years ago

1) add the scaling test suite

  • Property mode set to 100755
File size: 180 bytes
Line 
1#!/bin/sh
2
3pwd=`pwd`
4
5for 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
12done
13
14
Note: See TracBrowser for help on using the repository browser.