diff --git a/test/suite/main.py b/test/suite/main.py index 1df1b5e1e06752fd85ce6e4cef98d2c602e6a181..0f4a0165b6b4d5a833d6bec8b801adfc70c12948 100644 --- a/test/suite/main.py +++ b/test/suite/main.py @@ -105,7 +105,7 @@ class ScdaqTest: self.output_path, self.output_prefix, self.output_suffix = self.extract_config_values(self.config_file) - self.bytes_to_hash = Config.d_hashableBytes.get(test_id, Config.k_defaultHashableBytes) + self.bytes_to_hash = Config.d_hashableBytes.get(test_id) self.ref_hash_file = Config.p_hashDir / f"{test_id}_{self.bytes_to_hash}_{Config.k_referenceCommitTag}" self.artifact_path = Path(str(Config.p_testArtifactsDir) + "/" + session_id + f"/{test_id}") @@ -170,7 +170,7 @@ class ScdaqTest: def run_test(self, test_id: str, test_config: Config): scdaq_command = f"./{test_config.p_scdaqExecutable} --config {self.config_file}" - timeout_secs = test_config.d_runtimesSecs.get(test_id, test_config.k_defaultRuntimeSecs) + timeout_secs = test_config.d_runtimesSecs.get(test_id) controller = TestController(scdaq_command, timeout_secs) self.file_manager.setup_test(test_id, self.artifact_path)