From a9c07e7e1be984a69b67b722f45e1867f1c4c9e2 Mon Sep 17 00:00:00 2001 From: Loic Dachary Date: Thu, 17 Nov 2016 16:08:52 +0100 Subject: [PATCH] tests: use shorter directories for tests So that jenkins can use longer directories. We can't have both otherwise the limit UNIX domain socket path length limit triggers errors such as: ... client.admin.12750.asok is too long! The maximum length on this system is 107 Fixes: http://tracker.ceph.com/issues/16014 Signed-off-by: Loic Dachary --- src/test/ceph_objectstore_tool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/ceph_objectstore_tool.py b/src/test/ceph_objectstore_tool.py index 02b0dc5151dd9..cd1443f9c535a 100755 --- a/src/test/ceph_objectstore_tool.py +++ b/src/test/ceph_objectstore_tool.py @@ -395,7 +395,7 @@ if not CEPH_BUILD_DIR: CEPH_LIB=os.path.join(CEPH_BIN, '.libs') os.putenv('CEPH_LIB', CEPH_LIB) -CEPH_DIR = CEPH_BUILD_DIR + "/ceph_objectstore_tool_dir" +CEPH_DIR = CEPH_BUILD_DIR + "/cot_dir" CEPH_CONF = os.path.join(CEPH_DIR, 'ceph.conf') def kill_daemons(): -- 2.39.5