diff options
author | Greg Smith | 2010-01-25 05:30:29 +0000 |
---|---|---|
committer | Greg Smith | 2010-01-25 05:30:29 +0000 |
commit | 328f30607ab79124dc9bb3e0c38ac19d381d9fb0 (patch) | |
tree | 89f7942fd788d98191ce7dbe3b873fa8353f3661 | |
parent | 57964a7cbe181399bc650f1a3c1c036bb0cee73f (diff) |
Fix use of TESTDIR for 8.3 compatibility
-rwxr-xr-x | benchwarmer | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/benchwarmer b/benchwarmer index a4e7d98..a8d28dd 100755 --- a/benchwarmer +++ b/benchwarmer @@ -106,7 +106,7 @@ mkdir -p results/$TEST cd results/$TEST echo Script $SCRIPT executing $TRANS transactions for each of $CLIENTS concurrent users... 1>&2 -$PGBENCHBIN -f $BASEDIR/tests/$SCRIPT -s $SCALE -l -n -U $TESTUSER -t $TRANS -h $TESTHOST -c $CLIENTS $TESTDB > results.txt & +$PGBENCHBIN -f $BASEDIR/$TESTDIR/$SCRIPT -s $SCALE -l -n -U $TESTUSER -t $TRANS -h $TESTHOST -c $CLIENTS $TESTDB > results.txt & P=$! wait $P $RESULTPSQL -q -c "update tests set end_time=now() where test=$TEST" |