On 12/02/2014 10:03 AM, Brad King wrote: > Testing went pretty well, but the RunCMake.file test fails on HP-UX > in the LOCK-error-timeout case: > > http://open.cdash.org/testDetails.php?test=297595272&build=3594885 > > The relevant expect/actual lines are: > >> expect-err> Timeout reached\. >> actual-err> Permission denied. > > Any idea why that might happen?
This may fix it: cmFileLockUnix: Treat EACCES like EAGAIN http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=35bcecc0 According to 'man fcntl' locking an already-locked file may fail with either EACCES or EAGAIN. We were only checking the latter. Thanks, -Brad -- Powered by www.kitware.com Please keep messages on-topic and check the CMake FAQ at: http://www.cmake.org/Wiki/CMake_FAQ Kitware offers various services to support the CMake community. For more information on each offering, please visit: CMake Support: http://cmake.org/cmake/help/support.html CMake Consulting: http://cmake.org/cmake/help/consulting.html CMake Training Courses: http://cmake.org/cmake/help/training.html Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Follow this link to subscribe/unsubscribe: http://public.kitware.com/mailman/listinfo/cmake-developers
