Skip to content
Snippets Groups Projects
Commit 97775fc9 authored by Ulrich Schwickerath's avatar Ulrich Schwickerath
Browse files

move logfiles for simana

parent 52166892
No related branches found
No related tags found
1 merge request!34Set sast config and move simana log files
......@@ -82,14 +82,15 @@ if [ -e $ARCHIVE/$name ]; then
# compile it
echo "building libraries and executables"
mkdir -p $DELSIM_ROOT/${path} || /bin/true
mkdir -p $DELSIM_ROOT/${path}/log || /bin/true
if [ $DES -eq 0 ]; then
make_dellib -p delsim -v $VERS -o compile -batch >& $DELSIM_ROOT/$path/make_simana_${VERS}.log
make_dellib -p delsim -v $VERS -o compile -batch >& $DELSIM_ROOT/$path/log/make_simana_${VERS}.log
rc=$?
# run a test job
if [ $rc -eq 0 ]; then
mkdir -p $DELSIM_ROOT/${path}/test || /bin/true
cd $DELSIM_ROOT/${path}/test
runsim -version ${VERS} -LABO CERN -NRUN 1000 -EBEAM 45.625 -igen qqps -NEVMAX 10
runsim -version ${VERS} -LABO CERN -NRUN 1000 -EBEAM 45.625 -igen qqps -NEVMAX 10 > ../log/simana_${VERS}_test.log 2>&1
rc=$?
if [ $rc -eq 0 ]; then
echo "Test job finished successfully"
......@@ -102,7 +103,7 @@ if [ -e $ARCHIVE/$name ]; then
fi
cd ..
else
make_dellib -p delsim -evsrv -v $VERS -o compile -batch >& $DELSIM_ROOT/$path/make_simana_rd_${VERS}.log
make_dellib -p delsim -evsrv -v $VERS -o compile -batch >& $DELSIM_ROOT/$path/log/make_simana_rd_${VERS}.log
rc=$?
if [ $rc -eq 0 ]; then
echo "Build of delana for event server succeeded"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment