[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[or-cvs] r18111: {torflow} Fix the full run script up. Shouldn't background those jobs (torflow/trunk/CircuitAnalysis/BuildTimes)



Author: mikeperry
Date: 2009-01-14 19:18:53 -0500 (Wed, 14 Jan 2009)
New Revision: 18111

Modified:
   torflow/trunk/CircuitAnalysis/BuildTimes/full_run.sh
Log:

Fix the full run script up. Shouldn't background those jobs :)



Modified: torflow/trunk/CircuitAnalysis/BuildTimes/full_run.sh
===================================================================
--- torflow/trunk/CircuitAnalysis/BuildTimes/full_run.sh	2009-01-14 23:59:34 UTC (rev 18110)
+++ torflow/trunk/CircuitAnalysis/BuildTimes/full_run.sh	2009-01-15 00:18:53 UTC (rev 18111)
@@ -1,12 +1,32 @@
 #!/bin/sh
-./buildtimes.py -n 20000 -d slices/ -s 80 >& bt.log &
-./buildtimes.py -n 10000 -s 3 -g -e 50 -d ./slices >& bt.log &
-./buildtimes.py -n 10000 -s 3 -e 80 -d ./slices >& bt.log &
 
+mkdir slices
+
+./buildtimes.py -n 10000 -s 3 -e 80 -d ./slices >& ./slices/bt-slices.log
+
 # Check all slices
 for f in ./slices/*.nodes
 do
   ./dist_check.py -f ${f} >& ${f}.check
+  mv ${f} ${f}.checked
 done
 
+./buildtimes.py -n 10000 -s 3 -g -e 50 -d ./slices >& ./slices/bt-guards.log
+
+# Check all slices
+for f in ./slices/*.nodes
+do
+  ./dist_check.py -f ${f} >& ${f}.check
+  mv ${f} ${f}.checked
+done
+
+./buildtimes.py -n 20000 -d slices/ -s 80 >& ./slices/bt-all.log
+
+# Check all slices
+for f in ./slices/*.nodes
+do
+  ./dist_check.py -f ${f} >& ${f}.check
+  mv ${f} ${f}.checked
+done
+
 mv slices slices-`date +%Y-%m-%d-%H:%M`