Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit 7505d72f authored by gsell's avatar gsell
Browse files

cd into test before starting

parent 5837654a
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
mpirun -np 1 $OPAL_EXE_PATH/opal BC1-1.in --commlib mpi --info 3 --warn 0 "$@" 2>&1
cd "$(dirname "$(readlink -nf "$0")")"
mpirun -np 1 "$OPAL_EXE_PATH/opal" BC1-1.in --commlib mpi --info 3 --warn 0 "$@" 2>&1
#!/bin/bash
mpirun -np 8 $OPAL_EXE_PATH/opal Degrader-2.in "$@" 2>&1
cd "$(dirname "$(readlink -nf "$0")")"
mpirun -np 8 "$OPAL_EXE_PATH/opal" Degrader-2.in "$@" 2>&1
#!/bin/bash
mpirun -np 1 $OPAL_EXE_PATH/opal HKick-Test-2.in --commlib mpi --info 3 --warn 0 "$@" 2>&1
cd "$(dirname "$(readlink -nf "$0")")"
mpirun -np 1 "$OPAL_EXE_PATH/opal" HKick-Test-2.in --commlib mpi --info 3 --warn 0 "$@" 2>&1
#!/bin/bash
mpirun -np 4 $OPAL_EXE_PATH/opal LaserEmission-1.in --commlib mpi --info 3 --warn 0 "$@" 2>&1
cd "$(dirname "$(readlink -nf "$0")")"
mpirun -np 4 "$OPAL_EXE_PATH/opal" LaserEmission-1.in --commlib mpi --info 3 --warn 0 "$@" 2>&1
#!/bin/bash
timeout 300 mpirun -np 1 $OPAL_EXE_PATH/opal OpalRingTest.in "$@" 2>&1
cd "$(dirname "$(readlink -nf "$0")")"
timeout 300 mpirun -np 1 "$OPAL_EXE_PATH/opal" OpalRingTest.in "$@" 2>&1
#!/bin/bash
mpirun -np 4 $OPAL_EXE_PATH/opal PROSCAN-3.in --commlib mpi --info 3 --warn 0 "$@" 2>&1
cd "$(dirname "$(readlink -nf "$0")")"
mpirun -np 4 "$OPAL_EXE_PATH/opal" PROSCAN-3.in --commlib mpi --info 3 --warn 0 "$@" 2>&1
#!/bin/bash
mpirun -np 4 $OPAL_EXE_PATH/opal PROSCAN-4.in --commlib mpi --info 3 --warn 0 "$@" 2>&1
cd "$(dirname "$(readlink -nf "$0")")"
mpirun -np 4 "$OPAL_EXE_PATH/opal" PROSCAN-4.in --commlib mpi --info 3 --warn 0 "$@" 2>&1
#!/bin/bash
cd "$(dirname "$(readlink -nf "$0")")"
rm -f RestartTest-6.stat
rm -f RestartTest-6.lbal
......@@ -11,5 +13,5 @@ for X in h5 stat lbal; do
cp RestartTest-6.$X RestartTest-6.$X.ref
done
timeout 600 mpirun -np 4 $OPAL_EXE_PATH/opal RestartTest-6.in -restart 1 --commlib mpi --info 3 --warn 0 "$@" 2>&1
timeout 600 mpirun -np 4 "$OPAL_EXE_PATH/opal" RestartTest-6.in -restart 1 --commlib mpi --info 3 --warn 0 "$@" 2>&1
#!/bin/bash
mpirun -np 1 $OPAL_EXE_PATH/opal RingCyclotronSingleParticle.in --info 3 --warn 0 "$@" 2>&1
cd "$(dirname "$(readlink -nf "$0")")"
mpirun -np 1 "$OPAL_EXE_PATH/opal" RingCyclotronSingleParticle.in --info 3 --warn 0 "$@" 2>&1
#!/bin/bash
mpirun -np 4 $OPAL_EXE_PATH/opal SAAMG-Test-1.in --commlib mpi --info 2 --warn 0 "$@" 2>&1
cd "$(dirname "$(readlink -nf "$0")")"
mpirun -np 4 "$OPAL_EXE_PATH/opal" SAAMG-Test-1.in --commlib mpi --info 2 --warn 0 "$@" 2>&1
#!/bin/bash
mpirun -np 1 $OPAL_EXE_PATH/opal Transfer-Line.in --commlib mpi --info 3 --warn 0 "$@" 2>&1
cd "$(dirname "$(readlink -nf "$0")")"
mpirun -np 1 "$OPAL_EXE_PATH/opal" Transfer-Line.in --commlib mpi --info 3 --warn 0 "$@" 2>&1
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment