aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/run_interop_tests.py
diff options
context:
space:
mode:
authorGravatar adelez <adelez@google.com>2017-11-16 10:41:50 -0800
committerGravatar GitHub <noreply@github.com>2017-11-16 10:41:50 -0800
commit82c8f945302f128495e261b853ac49f1dfbe69a1 (patch)
treeec6a6eefc364fe616a77401105fde20b051b2ace /tools/run_tests/run_interop_tests.py
parent57a66242d05947c3a2819c8e6e43dbdb3204e325 (diff)
parenta00f972b214efcbfae906a12ce431da214059eaf (diff)
Merge pull request #13411 from adelez/fix_python
Fix manual docker command output for Python.
Diffstat (limited to 'tools/run_tests/run_interop_tests.py')
-rwxr-xr-xtools/run_tests/run_interop_tests.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/run_tests/run_interop_tests.py b/tools/run_tests/run_interop_tests.py
index 757d003edd..8f46ea99fd 100755
--- a/tools/run_tests/run_interop_tests.py
+++ b/tools/run_tests/run_interop_tests.py
@@ -574,6 +574,7 @@ def manual_cmdline(docker_cmdline, docker_image):
continue
if item == docker_image:
item = "$docker_image"
+ item = item.replace('"', '\\"')
# add quotes when necessary
if any(character.isspace() for character in item):
item = "\"%s\"" % item