comparison Tests/Tests.py @ 318:bac7cc80f240

dicomweb: test_wado_transcoding
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 22 Jun 2020 16:15:31 +0200
parents 0124075797cd
children de6e73e4df60
comparison
equal deleted inserted replaced
317:5ea07ecade93 318:bac7cc80f240
109 109
110 110
111 def CallMoveScu(args): 111 def CallMoveScu(args):
112 try: 112 try:
113 subprocess.check_call(GetMoveScuCommand() + args, 113 subprocess.check_call(GetMoveScuCommand() + args,
114 stderr=subprocess.PIPE) 114 stderr = subprocess.PIPE)
115 except subprocess.CalledProcessError as e: 115 except subprocess.CalledProcessError as e:
116 # The error code "69" corresponds to "EXITCODE_CMOVE_ERROR", 116 # The error code "69" corresponds to "EXITCODE_CMOVE_ERROR",
117 # that has been introduced in DCMTK 3.6.2. This error code is 117 # that has been introduced in DCMTK 3.6.2. This error code is
118 # expected by some tests that try and C-MOVE non-existing 118 # expected by some tests that try and C-MOVE non-existing
119 # DICOM instances. 119 # DICOM instances.