Index: testing/legion/common_lib.py |
diff --git a/testing/legion/common_lib.py b/testing/legion/common_lib.py |
index b66481e07638e5950185e6b055b210dd1f3515ed..2f527ea1695cc171959b9a0372375de7ea4fb6bc 100644 |
--- a/testing/legion/common_lib.py |
+++ b/testing/legion/common_lib.py |
@@ -6,6 +6,7 @@ |
import argparse |
import logging |
+import os |
import socket |
import xmlrpclib |
@@ -14,6 +15,8 @@ MY_IP = socket.gethostbyname(socket.gethostname()) |
SERVER_ADDRESS = '' |
SERVER_PORT = 31710 |
DEFAULT_TIMEOUT_SECS = 20 * 60 # 30 minutes |
+THIS_DIR = os.path.dirname(os.path.abspath(__file__)) |
+SWARMING_DIR = os.path.join(THIS_DIR, '..', '..', 'tools', 'swarming_client') |
def InitLogging(): |