From e57453c0988fcda992acde10638f182f71dce65e Mon Sep 17 00:00:00 2001 From: Bryan Herman Date: Thu, 10 Apr 2014 16:35:10 -0400 Subject: [PATCH] hostname now set by socket --- tests/run_nightly_tests.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/run_nightly_tests.py b/tests/run_nightly_tests.py index bff745b815..661104c352 100755 --- a/tests/run_nightly_tests.py +++ b/tests/run_nightly_tests.py @@ -6,6 +6,7 @@ import os import shutil import re import glob +import socket from subprocess import call from collections import OrderedDict from optparse import OptionParser @@ -232,7 +233,7 @@ pwd = os.environ['PWD'] ctest_vars = { 'source_dir' : pwd + '/../src', 'build_dir' : pwd + '/build', -'host_name' : 'neutronbalance', +'host_name' : socket.gethostname(), 'dashboard' : dash, 'submit' : submit, 'update' : update,