diff options
author | Matthew Newhook <matthew@zeroc.com> | 2014-11-20 09:48:53 -0330 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2014-11-20 09:48:53 -0330 |
commit | 406b086c8170f2deb956b0366534d15e8f09f46c (patch) | |
tree | 9bc977e1dc3898803534a927493aa229b35efd76 /cpp | |
parent | ICE-5943 allTests.py --arg option issue (diff) | |
download | ice-406b086c8170f2deb956b0366534d15e8f09f46c.tar.bz2 ice-406b086c8170f2deb956b0366534d15e8f09f46c.tar.xz ice-406b086c8170f2deb956b0366534d15e8f09f46c.zip |
ICE-5936 OSX: failure in test/Glacier2/staticFiltering
Diffstat (limited to 'cpp')
-rwxr-xr-x | cpp/test/Glacier2/staticFiltering/run.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/test/Glacier2/staticFiltering/run.py b/cpp/test/Glacier2/staticFiltering/run.py index f1b459a7863..21ad73cb9d0 100755 --- a/cpp/test/Glacier2/staticFiltering/run.py +++ b/cpp/test/Glacier2/staticFiltering/run.py @@ -20,8 +20,8 @@ if len(path) == 0: sys.path.append(os.path.join(path[0], "scripts")) import TestUtil -hostname = socket.gethostname() -fqdn = socket.getfqdn() +hostname = socket.gethostname().lower() +fqdn = socket.getfqdn().lower() limitedTests = False @@ -258,7 +258,7 @@ for testcase in testcases: rejects +=1 attackcfg.write(proxy + '\n') - attackcfg.close() + attackcfg.close() pingProgress() hostArg = "" |