summaryrefslogtreecommitdiff
path: root/py/test/Ice/defaultValue/Client.py
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2010-02-05 13:34:06 -0800
committerMark Spruiell <mes@zeroc.com>2010-02-05 13:34:06 -0800
commit2ae657758b62ca65a05a12a291097d8fe98dd2b5 (patch)
tree88eb13c400efe34ede7282c157907bc7812fe497 /py/test/Ice/defaultValue/Client.py
parentupdating CHANGES for bug 4653 (diff)
downloadice-2ae657758b62ca65a05a12a291097d8fe98dd2b5.tar.bz2
ice-2ae657758b62ca65a05a12a291097d8fe98dd2b5.tar.xz
ice-2ae657758b62ca65a05a12a291097d8fe98dd2b5.zip
bug 4650 - Slice default values
Diffstat (limited to 'py/test/Ice/defaultValue/Client.py')
-rwxr-xr-xpy/test/Ice/defaultValue/Client.py28
1 files changed, 28 insertions, 0 deletions
diff --git a/py/test/Ice/defaultValue/Client.py b/py/test/Ice/defaultValue/Client.py
new file mode 100755
index 00000000000..76001ab777b
--- /dev/null
+++ b/py/test/Ice/defaultValue/Client.py
@@ -0,0 +1,28 @@
+#!/usr/bin/env python
+# **********************************************************************
+#
+# Copyright (c) 2003-2010 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)