Sfoglia il codice sorgente

Don't run Figure 9 tests with "all"

since they're not meant to be run in dockers, but on a live network
Ian Goldberg 4 mesi fa
parent
commit
73e07631c2
1 ha cambiato i file con 4 aggiunte e 2 eliminazioni
  1. 4 2
      repro/repro

+ 4 - 2
repro/repro

@@ -285,7 +285,9 @@ if [ "$whichexps" = "tab4" -o "$whichexps" = "all" ]; then
     done
 fi
 
-if [ "$whichexps" = "fig9" -o "$whichexps" = "all" ]; then
+# The Figure 9 experiments are not run with "all", since they're not
+# meant to be run in dockers, but on a live network.
+if [ "$whichexps" = "fig9" ]; then
     echo "Running Figure 9 experiments..."
     for iter in $(seq 1 $numiters); do
         # Table 4
@@ -462,7 +464,7 @@ egrep 'OptPRACPreprc avlDel [0-9]+ 1 .* KiB$' data/prac.dat | sort -k3 -n
 echo
 egrep 'OptPRACOnln avlDel [0-9]+ 1 .* KiB$' data/prac.dat | sort -k3 -n
 echo
-echo '# Heap Sampler'
+echo '# Figure 9'
 egrep 'PRACTotl heapsampler [0-9]+ [0-9]+ .* s' data/prac.dat | sort -k3,3n -k4,4n
 echo
 echo "# End figures"