From: Gerd von Egidy Date: Sun, 10 May 2015 14:30:48 +0000 (+0200) Subject: when running the unit test without root, you don't have write access to /var/run X-Git-Tag: v2.7~2 X-Git-Url: http://developer.intra2net.com/git/?a=commitdiff_plain;h=bb96045b64c80467896827195ce31d1fb722353b;p=libi2ncommon when running the unit test without root, you don't have write access to /var/run --- 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(); }