diff options
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 = "" |