diff options
author | Bernard Normier <bernard@zeroc.com> | 2004-03-03 22:25:18 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2004-03-03 22:25:18 +0000 |
commit | d9cf9d79423337a074efa4dc5c86b3a96fae9373 (patch) | |
tree | 35edb53b15e9aef6d8bf0ad4067118bb6e9d99b1 /cpp/test/Slice/errorDetection/run.py | |
parent | server out is stdout (diff) | |
download | ice-d9cf9d79423337a074efa4dc5c86b3a96fae9373.tar.bz2 ice-d9cf9d79423337a074efa4dc5c86b3a96fae9373.tar.xz ice-d9cf9d79423337a074efa4dc5c86b3a96fae9373.zip |
Fixed missing LD_LIBRARY_PATH
Diffstat (limited to 'cpp/test/Slice/errorDetection/run.py')
-rwxr-xr-x | cpp/test/Slice/errorDetection/run.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cpp/test/Slice/errorDetection/run.py b/cpp/test/Slice/errorDetection/run.py index f16d15a9774..32faa3cb45f 100755 --- a/cpp/test/Slice/errorDetection/run.py +++ b/cpp/test/Slice/errorDetection/run.py @@ -22,6 +22,12 @@ for toplevel in [".", "..", "../..", "../../..", "../../../.."]: else: raise "can't find toplevel directory!" +# +# For LD_LIBRARY_PATH and similar env variables +# +sys.path.append(os.path.join(toplevel, "config")) +import TestUtil + directory = os.path.join(toplevel, "test", "Slice", "errorDetection") slice2cpp = os.path.join(toplevel, "bin", "slice2cpp") @@ -32,6 +38,7 @@ for file in os.listdir(directory): files.append(file) files.sort() + for file in files: print file + "...", |