BIND 10 master, updated. 0eb1e5059c26a083708f6d765035aba8aa4c6d2d Fix problem with long path on build bots
BIND 10 source code commits
bind10-changes at lists.isc.org
Fri Mar 15 09:00:16 UTC 2013
The branch, master has been updated
via 0eb1e5059c26a083708f6d765035aba8aa4c6d2d (commit)
from abf4296a7becc39021bc31594b29fa540a86efff (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 0eb1e5059c26a083708f6d765035aba8aa4c6d2d
Author: Michal 'vorner' Vaner <michal.vaner at nic.cz>
Date: Fri Mar 15 08:35:22 2013 +0100
Fix problem with long path on build bots
Place the socket higher in the hierarchy (to the top-level build
directory) to have a shorter path.
-----------------------------------------------------------------------
Summary of changes:
src/bin/msgq/tests/msgq_run_test.py | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
-----------------------------------------------------------------------
diff --git a/src/bin/msgq/tests/msgq_run_test.py b/src/bin/msgq/tests/msgq_run_test.py
index 33e80bc..8e8cb65 100644
--- a/src/bin/msgq/tests/msgq_run_test.py
+++ b/src/bin/msgq/tests/msgq_run_test.py
@@ -43,7 +43,9 @@ import isc.log
import isc.cc.session
from isc.cc.proto_defs import *
-SOCKET_PATH = os.path.abspath(os.environ['BIND10_TEST_SOCKET_FILE'])
+# Due to problems with too long path on build bots, we place the socket
+# into the top-level build directory. That is ugly, but works.
+SOCKET_PATH = os.path.abspath(os.environ['B10_FROM_BUILD'] + '/msgq.sock')
MSGQ_PATH = os.environ['B10_FROM_BUILD'] + '/src/bin/msgq/run_msgq.sh'
TIMEOUT = 15 # Some long time (seconds), for single test.
More information about the bind10-changes
mailing list