diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2021-11-29 23:16:35 +0200 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2021-12-01 08:54:24 +0200 |
commit | 59002a9e9d84417197999391c7d8c6af620fc1fb (patch) | |
tree | 33098fa6e3004d17f4a1cc28b38e5b7881953392 /test/process/process_test.cpp | |
parent | b24d9c4413b9d7f55f4105adeb7cf9a2450d3204 (diff) |
test: Replace "/proc/self/exe" with path to test binary
When tests are run under valgrind, /proc/self/exe points to valgrind,
not to the test binary. This results in failures for tests that need to
fork processes. Fix it by replacing "/proc/self/exe" with the path to
the test binary.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'test/process/process_test.cpp')
-rw-r--r-- | test/process/process_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/process/process_test.cpp b/test/process/process_test.cpp index 96bea17f..b410756b 100644 --- a/test/process/process_test.cpp +++ b/test/process/process_test.cpp @@ -55,7 +55,7 @@ protected: proc_.kill(); /* Test starting the process and retrieving the exit code. */ - int ret = proc_.start("/proc/self/exe", args); + int ret = proc_.start(self(), args); if (ret) { cerr << "failed to start process" << endl; return TestFail; |