Index: shared/scripts/configuration/config.py =================================================================== diff -u -rbb798f36abcf369278c91d168e16c35003d0b55a -re2c7e8c3ff84e22b6480ddbb52e52a32bdba16b5 --- shared/scripts/configuration/config.py (.../config.py) (revision bb798f36abcf369278c91d168e16c35003d0b55a) +++ shared/scripts/configuration/config.py (.../config.py) (revision e2c7e8c3ff84e22b6480ddbb52e52a32bdba16b5) @@ -15,7 +15,7 @@ import os -Application_name = "denaliSquish" +APPLICATION_NAME = "denaliSquish" COMMON_PATH = f"{os.environ['HOME']}/Projects" Index: suite.conf =================================================================== diff -u -r53ce67a03db14c036e3134627621be58715eb17f -re2c7e8c3ff84e22b6480ddbb52e52a32bdba16b5 --- suite.conf (.../suite.conf) (revision 53ce67a03db14c036e3134627621be58715eb17f) +++ suite.conf (.../suite.conf) (revision e2c7e8c3ff84e22b6480ddbb52e52a32bdba16b5) @@ -4,6 +4,6 @@ IMPLICITAUTSTART=0 LANGUAGE=Python OBJECTMAPSTYLE=script -TEST_CASES=tst_standbymode tst_pre_treatment tst_post +TEST_CASES=tst_environment tst_post tst_standbymode tst_In_treatment VERSION=3 WRAPPERS=Qt Index: tst_post/test.py =================================================================== diff -u -r53ce67a03db14c036e3134627621be58715eb17f -re2c7e8c3ff84e22b6480ddbb52e52a32bdba16b5 --- tst_post/test.py (.../test.py) (revision 53ce67a03db14c036e3134627621be58715eb17f) +++ tst_post/test.py (.../test.py) (revision e2c7e8c3ff84e22b6480ddbb52e52a32bdba16b5) @@ -20,6 +20,7 @@ from builtins import int as pyInt from configuration.assertion_helper import * +from configuration.config import * from dialin.ui.hd_simulator import HDSimulator # from dialin.ui.dg_simulator import DGSimulator # from dialin.ui.hd_simulator_alarms import HDAlarmsSimulator @@ -109,8 +110,8 @@ def main(): - utils.tstStart("tst_post") - startApplication("denaliSquish") + utils.tstStart(__file__) + startApplication(APPLICATION_NAME) hd.cmd_send_power_on_self_test_version_request() post_a_message_and_verify_progress_and_completion(MSGS_AND_CONDITIONS)