Skip to content

Commit 35211a8

Browse files
[SYCLomatic] Fixed empty char bug in --extra-arg (#874)
1 parent 9d5e6fe commit 35211a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ def do_migrate(src, in_root, out_root, extra_args = []):
172172
cmd += ' --out-root ' + out_root
173173
if extra_args:
174174
for arg in extra_args:
175-
cmd += ' --extra-arg=\" ' + arg + '\"'
175+
cmd += ' --extra-arg=\"' + arg + '\" '
176176
if test_config.migrate_option:
177177
cmd += ' ' + test_config.migrate_option
178178
return call_subprocess(cmd)

0 commit comments

Comments
 (0)