diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2009-04-20 15:30:28 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2009-04-20 15:30:28 -0230 |
commit | b0089ca4d5998548dbbfbc1dec8414fe8f7c557f (patch) | |
tree | a5d50a3d1d57454293a93789de5423db53b512e8 /cpp/test/Slice/errorDetection/run.py | |
parent | bug 3961 - change Application classes to use process logger (diff) | |
download | ice-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-x | cpp/test/Slice/errorDetection/run.py | 5 |
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() |