Skip to content
Snippets Groups Projects
Commit 95bf66af authored by Christopher J. Morrone's avatar Christopher J. Morrone
Browse files

Fix executable path (./) and use a more simple loop.

parent 5d2db4c6
No related branches found
No related tags found
No related merge requests found
...@@ -96,14 +96,11 @@ exec $bin_make -f /dev/null $file_prog ...@@ -96,14 +96,11 @@ exec $bin_make -f /dev/null $file_prog
make_bash_script $file_in " make_bash_script $file_in "
$bin_echo 'testing within script' $bin_echo 'testing within script'
$file_prog ./$file_prog
$bin_echo ' ' $bin_echo ' '
$bin_echo 'testing $iterations sets of spawned tasks' $bin_echo 'testing $iterations sets of spawned tasks'
inx=1 for ((i=0; i<$iterations; i++)) ; do
while \[ \$inx -le $iterations \]
do
$srun $file_prog $srun $file_prog
inx=\$((inx+1))
done done
" "
......
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