summaryrefslogtreecommitdiff
path: root/demoscript/Ice
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2009-03-26 16:22:48 -0230
committerDwayne Boone <dwayne@zeroc.com>2009-03-26 16:22:48 -0230
commit09ad7aefdf77c9575d6b0d8f16df4e2d61cfc41f (patch)
treef2d6fef63d085070f174a24f1db123f893bbd1c0 /demoscript/Ice
parentAllow for 3 line comment in header (diff)
downloadice-09ad7aefdf77c9575d6b0d8f16df4e2d61cfc41f.tar.bz2
ice-09ad7aefdf77c9575d6b0d8f16df4e2d61cfc41f.tar.xz
ice-09ad7aefdf77c9575d6b0d8f16df4e2d61cfc41f.zip
Removed protobuf demos/tests
Diffstat (limited to 'demoscript/Ice')
-rw-r--r--demoscript/Ice/protobuf.py30
1 files changed, 0 insertions, 30 deletions
diff --git a/demoscript/Ice/protobuf.py b/demoscript/Ice/protobuf.py
deleted file mode 100644
index 23ad94fc48d..00000000000
--- a/demoscript/Ice/protobuf.py
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/usr/bin/env python
-# **********************************************************************
-#
-# Copyright (c) 2003-2009 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 sys
-from demoscript import *
-from scripts import Expect
-
-def run(client, server):
- print "testing...",
- sys.stdout.flush()
- client.sendline('t')
- server.expect('Hello World from id: 1')
- server.expect('name: "Fred Jones"')
- server.expect('email: "fred@jones.com"')
- print "ok"
-
- print "shutting down...",
- client.sendline('s')
- server.waitTestSuccess()
-
- client.sendline('x')
- client.waitTestSuccess()
- print "ok"