diff options
Diffstat (limited to 'cpp/test/Ice/stream/run.py')
-rwxr-xr-x | cpp/test/Ice/stream/run.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cpp/test/Ice/stream/run.py b/cpp/test/Ice/stream/run.py index 91f39aa40cc..85ddafb614f 100755 --- a/cpp/test/Ice/stream/run.py +++ b/cpp/test/Ice/stream/run.py @@ -21,4 +21,7 @@ sys.path.append(os.path.join(path[0], "scripts")) import TestUtil client = os.path.join(os.getcwd(), "client") +print("Running test with default encoding...") TestUtil.simpleTest(client) +print("Running test with 1.0 encoding...") +TestUtil.simpleTest(client, "--Ice.Default.EncodingVersion=1.0") |