summaryrefslogtreecommitdiff
path: root/python/test/Ice/defaultValue/Client.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/test/Ice/defaultValue/Client.py')
-rwxr-xr-xpython/test/Ice/defaultValue/Client.py28
1 files changed, 28 insertions, 0 deletions
diff --git a/python/test/Ice/defaultValue/Client.py b/python/test/Ice/defaultValue/Client.py
new file mode 100755
index 00000000000..061672f46dc
--- /dev/null
+++ b/python/test/Ice/defaultValue/Client.py
@@ -0,0 +1,28 @@
+#!/usr/bin/env python
+# **********************************************************************
+#
+# Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved.
+#
+# This copy of Ice is licensed to you under the terms described in the
+# ICE_LICENSE file included in this distribution.
+#
+# **********************************************************************
+
+import os, sys, traceback
+
+import Ice
+
+Ice.loadSlice('Test.ice')
+import AllTests
+
+def run(args):
+ AllTests.allTests()
+ return True
+
+try:
+ status = run(sys.argv)
+except:
+ traceback.print_exc()
+ status = False
+
+sys.exit(not status)