[tests] allow zmq test to be run in out-of-tree builds

This commit is contained in:
John Newbery
2017-05-01 15:12:49 -04:00
parent e2b99b1313
commit b8251f6337
3 changed files with 9 additions and 2 deletions

View File

@@ -178,7 +178,10 @@ def main():
# Read config generated by configure.
config = configparser.ConfigParser()
config.read_file(open(os.path.dirname(__file__) + "/config.ini"))
configfile = os.path.abspath(os.path.dirname(__file__)) + "/config.ini"
config.read_file(open(configfile))
passon_args.append("--configfile=%s" % configfile)
# Set up logging
logging_level = logging.INFO if args.quiet else logging.DEBUG