summaryrefslogtreecommitdiff
path: root/cpp/test/Slice/errorDetection/run.py
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2002-07-01 01:48:27 +0000
committerMichi Henning <michi@zeroc.com>2002-07-01 01:48:27 +0000
commit6a5566ac0c91503f37759c2c06fe3b2f86e4ea99 (patch)
tree7c49806d9e55ca00b0d9d2a034e270a1caf630e7 /cpp/test/Slice/errorDetection/run.py
parentLinux fix (diff)
downloadice-6a5566ac0c91503f37759c2c06fe3b2f86e4ea99.tar.bz2
ice-6a5566ac0c91503f37759c2c06fe3b2f86e4ea99.tar.xz
ice-6a5566ac0c91503f37759c2c06fe3b2f86e4ea99.zip
Added more case-insensitive checks for struct, exception, and class
definitions. Changed parser to write diagnostics to stdout instead of stderr.
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 8e4551f4730..f2cdc75dfe0 100755
--- a/cpp/test/Slice/errorDetection/run.py
+++ b/cpp/test/Slice/errorDetection/run.py
@@ -34,7 +34,7 @@ for file in files:
command = slice2cpp + " " + os.path.join(directory, file);
stdin, stdout, stderr = os.popen3(command)
- lines1 = stderr.readlines()
+ lines1 = stdout.readlines()
lines2 = open(os.path.join(directory, regex1.sub(".err", file)), "r").readlines()
if len(lines1) != len(lines2):
print "failed!"