diff options
Diffstat (limited to 'cpp/test/Ice/properties/run.py')
-rwxr-xr-x | cpp/test/Ice/properties/run.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/test/Ice/properties/run.py b/cpp/test/Ice/properties/run.py index 43769c36b25..04d095c631e 100755 --- a/cpp/test/Ice/properties/run.py +++ b/cpp/test/Ice/properties/run.py @@ -21,7 +21,7 @@ if len(path) == 0: sys.path.append(os.path.join(path[0], "scripts")) import TestUtil -client = os.path.join(os.getcwd(), "client") +client = os.path.join(os.getcwd(), TestUtil.getTestExecutable("client")) # # Write config @@ -33,11 +33,11 @@ else: configPath = "./config/\u4e2d\u56fd_client.config" decodedPath = configPath # No need to decode with Python3, strings are already Unicode -TestUtil.createConfig(decodedPath, - ["# Automatically generated by Ice test driver.", +TestUtil.createConfig(decodedPath, + ["# Automatically generated by Ice test driver.", "Ice.Trace.Protocol=1", - "Ice.Trace.Network=1", - "Ice.ProgramName=PropertiesClient", + "Ice.Trace.Network=1", + "Ice.ProgramName=PropertiesClient", "Config.Path=" + configPath], "utf-8") |