From 281da4916b4fed6120cfabca0238ffe10cbf498b Mon Sep 17 00:00:00 2001 From: Amos Jeffries Date: Fri, 1 Mar 2013 03:01:57 -0700 Subject: [PATCH] MacOS: reduce the testRock unit test UDS path On MacOS shm_open() requires the name entry to be less than 31 bytes long. The garbage name used by testRock was 35 bytes and not really describing what it was used for in the test anyway. TODO: find out and fix why MacOS still responds EINVAL once the path is set to a usable length. --- src/tests/testRock.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/testRock.cc b/src/tests/testRock.cc index 5fdad0eb44..163f53cbff 100644 --- a/src/tests/testRock.cc +++ b/src/tests/testRock.cc @@ -27,7 +27,7 @@ #include #endif -#define TESTDIR "testRock__testRockSearch" +#define TESTDIR "testRock_Store" CPPUNIT_TEST_SUITE_REGISTRATION( testRock ); -- 2.47.2