summaryrefslogtreecommitdiff
path: root/cpp/test/Slice/errorDetection/run.py
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2009-01-28 06:55:36 +1000
committerMichi Henning <michi@zeroc.com>2009-01-28 06:55:36 +1000
commit09b4a1830989b33d06e7a421dbf197d2aa335b91 (patch)
tree61a84913028a1d08a3dfa83f5b519ccda3fd1e9b /cpp/test/Slice/errorDetection/run.py
parenthttp://bugzilla/bugzilla/show_bug.cgi?id=3483 - Move Freeze to separate Jar file (diff)
parentSquashed commit of the following: (diff)
downloadice-09b4a1830989b33d06e7a421dbf197d2aa335b91.tar.bz2
ice-09b4a1830989b33d06e7a421dbf197d2aa335b91.tar.xz
ice-09b4a1830989b33d06e7a421dbf197d2aa335b91.zip
Merge branch 'R3_3_branch'
Diffstat (limited to 'cpp/test/Slice/errorDetection/run.py')
-rwxr-xr-xcpp/test/Slice/errorDetection/run.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/test/Slice/errorDetection/run.py b/cpp/test/Slice/errorDetection/run.py
index 769754c0b84..b10af237310 100755
--- a/cpp/test/Slice/errorDetection/run.py
+++ b/cpp/test/Slice/errorDetection/run.py
@@ -39,7 +39,7 @@ for file in files:
else:
command = slice2cpp + " -I. " + os.path.join(os.getcwd(), file);
stdin, stdout, stderr = os.popen3(command)
- lines1 = stdout.readlines()
+ lines1 = stderr.readlines()
lines2 = open(os.path.join(os.getcwd(), regex1.sub(".err", file)), "r").readlines()
if len(lines1) != len(lines2):
print "failed!"