Commit 8d45f7ca authored by Andreas Tille's avatar Andreas Tille
Browse files

Get most test issues fixed - leaving the last failure as a riddle for Saira

parent 9e54a06a
Loading
Loading
Loading
Loading
+5 −8
Original line number Diff line number Diff line
@@ -19,9 +19,6 @@ gunzip -r *
# Just for debugging
set -x

# Set the X Server
# Xvfb :100 -ac &

# Run simulation
cd workflow/wild_type
aevol_create
@@ -33,7 +30,7 @@ outdirsB="line06 line07 line08 line09 line10"
outdirsC="line11 line12 line13 line14 line15"
for mydir in $outdirsA $outdirsB $outdirsC
do
  aevol_propagate -o ../$mydir
  xvfb-run --auto-servernum --server-args="-screen 0 1024x768x24" aevol_propagate -o ../$mydir
done

cd ..
@@ -73,21 +70,21 @@ ENV_VARIATION none" > newparam-groupC.in
for mydir in $outdirsA
do
   cd $mydir
   aevol_modify -f ../newparam-groupA.in
   xvfb-run --auto-servernum --server-args="-screen 0 1024x768x24" aevol_modify -f ../newparam-groupA.in
   cd ..
done

for mydir in $outdirsB
do
  cd $mydir
  aevol_modify -f ../newparam-groupB.in
  xvfb-run --auto-servernum --server-args="-screen 0 1024x768x24" aevol_modify -f ../newparam-groupB.in
  cd ..
done

for mydir in $outdirsC
do
  cd $mydir
  aevol_modify -f ../newparam-groupC.in
  xvfb-run --auto-servernum --server-args="-screen 0 1024x768x24" aevol_modify -f ../newparam-groupC.in
  cd ..
done

@@ -96,7 +93,7 @@ done
for mydir in $outdirsA $outdirsB $outdirsC
do
  cd $mydir
  aevol_run -e 200 -p -1
  xvfb-run --auto-servernum --server-args="-screen 0 1024x768x24" aevol_run -e 200 -p -1
  cd ..
done