summaryrefslogtreecommitdiff
path: root/cpp/test/Slice/errorDetection/run.py
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2009-01-15 16:02:54 +0100
committerBenoit Foucher <benoit@zeroc.com>2009-01-15 16:02:54 +0100
commita10f33af6ee6298b4a7412a3819cc4818f086fa4 (patch)
tree7dc924b0692491a6419b81ae419b559ccef467cf /cpp/test/Slice/errorDetection/run.py
parentbug 3266 - fix IceSSL/C++ for custom contexts (diff)
downloadice-a10f33af6ee6298b4a7412a3819cc4818f086fa4.tar.bz2
ice-a10f33af6ee6298b4a7412a3819cc4818f086fa4.tar.xz
ice-a10f33af6ee6298b4a7412a3819cc4818f086fa4.zip
- Fixed errorDetection test
- Fixed bug 3504, added locator request queue.
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!"