Index: remote_test.sh =================================================================== diff -u --- remote_test.sh (revision 0) +++ remote_test.sh (revision fda32cd2ba4e50e8047541e260dc82ee37e26e43) @@ -0,0 +1,21 @@ +#!/bin/bash + +if [[ -z "$1" ]]; then + echo "no target ip has been defined." + exit 1 +fi + +SQUISH_RUNNER_PATH="/opt/squishqt/bin" +SQUISH_SERVER_HOST="$1" +SQUISH_SERVER_PORT=4322 +TESTSUITE="$(pwd)/testsuites" +REPORTPATH="$(pwd)/reports" + +cd $SQUISH_RUNNER_PATH/ + +./squishrunner \ + --host $SQUISH_SERVER_HOST \ + --port $SQUISH_SERVER_PORT \ + --testsuite $TESTSUITE \ + --reportgen xml2.1,$REPORTPATH/report.xml + Index: suite.conf =================================================================== diff -u -rbb99af6ec9ef22ef17d1fad542810e898132c5b2 -rfda32cd2ba4e50e8047541e260dc82ee37e26e43 --- suite.conf (.../suite.conf) (revision bb99af6ec9ef22ef17d1fad542810e898132c5b2) +++ suite.conf (.../suite.conf) (revision fda32cd2ba4e50e8047541e260dc82ee37e26e43) @@ -2,7 +2,7 @@ CWD= ENVVARS=envvars HOOK_SUB_PROCESSES=false -IMPLICITAUTSTART=0 +IMPLICITAUTSTART=1 LANGUAGE=Python OBJECTMAPSTYLE=script TEST_CASES=tst_Internals tst_HomeScreen tst_ServiceShutdown tst_TreatmentScreen tst_Treatment_Section_BloodDialysate tst_Treatment_BloodDialysateFlowRate tst_Treatment_Time tst_Treatment_Ultrafiltration tst_Treatment_PressureOcclusion tst_Treatment_ParametersRange tst_Treatment_Adjustment_BloodDialysate tst_Treatment_Adjustment_Duration tst_Treatment_Adjustment_Ultrafiltration tst_Treatment_Adjustment_Pressures tst_Treatment_Adjustment_Saline tst_Treatment_Adjustment_Heparin tst_TreatmentSalineData tst_TreatmentStatesData tst_TreatmentHeparineData tst_DGROPumpData tst_DGDrainPumpData tst_DGPressureData tst_DGReservoirData tst_DGHeatersData tst_DGLoadCellReadingsData tst_DGTemperaturesData tst_case2 tst_DGValvesStatesData tst_DGOperationMode tst_HDOperationModeData tst_HDBloodFlowData tst_HDInletFlowData tst_HDOutletFlowData tst_HDPressureOcclusionData tst_CANBusFaultCount tst_DebugText tst_CreateTreatment tst_ConfirmPrimingBegin tst_AlarmStatusData tst_AlarmTriggered tst_AlarmCleared