From ed88fca47be81f464d189c1c208cbbfffc9bb64c Mon Sep 17 00:00:00 2001 From: Nick Martin Date: Wed, 4 Jan 2012 21:30:23 -0800 Subject: [PATCH] misc fixup in tests. --- tests/selenium/run-tests.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/selenium/run-tests.sh b/tests/selenium/run-tests.sh index e2f19aa0b6..2a08bc6efc 100755 --- a/tests/selenium/run-tests.sh +++ b/tests/selenium/run-tests.sh @@ -3,7 +3,7 @@ # XXX this is just a placeholder! TESTDIR=`dirname $0` -TMPDIR=`mktemp -d -t skytest` +TMPDIR=`mktemp -d -t meteor-test` cd "$TESTDIR" cd ../.. @@ -14,18 +14,18 @@ cd "$TMPDIR/todos2" rm -rf .meteor/local "$TOPDIR/meteor" & -SKY_PID=$! +METEOR_PID=$! -echo "Running $SKY_PID" +echo "Running $METEOR_PID" sleep 2 cd $TOPDIR python ./tests/selenium/todo-basic.py -echo "Killing $SKY_PID" +echo "Killing $METEOR_PID" -kill -INT $SKY_PID +kill -INT $METEOR_PID # XXX horrible and wrong!! killall mongod