turn deathvegas back off
[tests.git] / system / run_log
index 505d7bc..16ed934 100755 (executable)
@@ -1,5 +1,6 @@
 #!/bin/bash
 cd $(dirname $0)
+python -c "import time; print int(time.time())" > timestamp
 mkdir -p logs
 time=$(date +%H-%M)
 runfile=run-${time}.txt
@@ -11,8 +12,8 @@ tracelast=trace
 rm -f logs/success
 rm -f logs/$runlast; (cd logs; ln -s $runfile $runlast)
 rm -f logs/$tracelast; (cd logs; ln -s $tracefile $tracelast)
-python -u TestMain.py -t $tracefile "$@" &> logs/$runfile && touch logs/success
-cat $runfile
+python -u TestMain.py -t logs/$tracefile "$@" &> logs/$runfile && touch logs/success
+cat logs/$runfile
 
 if [ -f logs/success ] ; then
     exit 0