fixed imagesize ctb issue (out values not transferred, setting any dbit values was not recalculatign image size in generaldata)

This commit is contained in:
2025-08-04 12:12:30 +02:00
parent 6389692c16
commit 956103bbd4
9 changed files with 280 additions and 181 deletions

View File

@@ -73,7 +73,7 @@ def startCmdTestsForAll(args, fp):
if __name__ == '__main__':
args = ParseArguments('Automated tests with the virtual detector servers', 1, 1)
args = ParseArguments(description='Automated tests with the virtual detector servers', default_num_mods=1, markers=1, general_tests_option=True)
if args.num_mods > 1:
raise RuntimeException(f'Cannot support multiple modules at the moment (except Eiger).')
@@ -81,7 +81,8 @@ if __name__ == '__main__':
with open(MAIN_LOG_FNAME, 'w') as fp:
try:
startGeneralTests(fp)
if args.general_tests:
startGeneralTests(fp)
startCmdTestsForAll(args, fp)
cleanup(fp)
except Exception as e: