From bb96045b64c80467896827195ce31d1fb722353b Mon Sep 17 00:00:00 2001 From: Gerd von Egidy Date: Sun, 10 May 2015 16:30:48 +0200 Subject: [PATCH] when running the unit test without root, you don't have write access to /var/run --- test/test_pidfile.cpp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/test/test_pidfile.cpp b/test/test_pidfile.cpp index 50d6843..35601c4 100644 --- a/test/test_pidfile.cpp +++ b/test/test_pidfile.cpp @@ -47,7 +47,7 @@ public: TestPidFileFixture() { ostringstream out; - out << "/var/run/test_pidfile.run." << getpid(); + out << "test_pidfile.run." << getpid(); Filename = out.str(); } -- 1.7.1