source ${a_dir}/env.sh
source ${a_dir}/env_standalone.sh
-${INSTALL_DIR}/bin/GeomApp "$@"
+if [ -f GDB ]; then
+ ${INSTALL_DIR}/bin/GeomApp &
+ APP_PID=$!
+ echo "Connect GDB to PID ${APP_PID}"
+ gdb --command=commands.gdb - ${APP_PID}
+else
+ ${INSTALL_DIR}/bin/GeomApp
+fi
for aut in linux_run.sh salome_run.sh; do
squishserver --config addAUT ${aut} $(pwd)
done
-squishserver --config setAUTTimeout 60
+squishserver --config setAUTTimeout 120
squishserver --verbose --port=${SQUISHSERVER_PORT} --stop
squishserver --verbose --port=${SQUISHSERVER_PORT} 2>server.err &