summaryrefslogtreecommitdiff
path: root/cpp/test/Slice/errorDetection/run.py
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2009-04-20 15:30:28 -0230
committerDwayne Boone <dwayne@zeroc.com>2009-04-20 15:30:28 -0230
commitb0089ca4d5998548dbbfbc1dec8414fe8f7c557f (patch)
treea5d50a3d1d57454293a93789de5423db53b512e8 /cpp/test/Slice/errorDetection/run.py
parentbug 3961 - change Application classes to use process logger (diff)
downloadice-b0089ca4d5998548dbbfbc1dec8414fe8f7c557f.tar.bz2
ice-b0089ca4d5998548dbbfbc1dec8414fe8f7c557f.tar.xz
ice-b0089ca4d5998548dbbfbc1dec8414fe8f7c557f.zip
Bug 1535 - remove --case-sensitive option form slice compilers
Diffstat (limited to 'cpp/test/Slice/errorDetection/run.py')
-rwxr-xr-xcpp/test/Slice/errorDetection/run.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/cpp/test/Slice/errorDetection/run.py b/cpp/test/Slice/errorDetection/run.py
index ed1000b8dc6..1cca143dcd0 100755
--- a/cpp/test/Slice/errorDetection/run.py
+++ b/cpp/test/Slice/errorDetection/run.py
@@ -34,10 +34,7 @@ for file in files:
print file + "...",
- if file == "CaseSensitive.ice":
- command = slice2cpp + " --case-sensitive -I. " + os.path.join(os.getcwd(), file);
- else:
- command = slice2cpp + " -I. " + os.path.join(os.getcwd(), file);
+ command = slice2cpp + " -I. " + os.path.join(os.getcwd(), file);
stdin, stdout, stderr = os.popen3(command)
lines1 = stderr.readlines()
lines2 = open(os.path.join(os.getcwd(), regex1.sub(".err", file)), "r").readlines()