summaryrefslogtreecommitdiff
path: root/test/process
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2021-11-29 23:02:27 +0200
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2021-12-01 08:54:12 +0200
commitb24d9c4413b9d7f55f4105adeb7cf9a2450d3204 (patch)
treec896a9d23ffe729ffdac5146b965fe2e83fbdee8 /test/process
parent68e4f70a6937a69339c3f48502cd4e332c3a16ca (diff)
test: Store path to the test executable in Test class
Store the path to the test executable, found in argv[0], in the Test instance. This can be useful for tests that need to fork processes. 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')
-rw-r--r--test/process/process_test.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/process/process_test.cpp b/test/process/process_test.cpp
index 378d680b..96bea17f 100644
--- a/test/process/process_test.cpp
+++ b/test/process/process_test.cpp
@@ -9,7 +9,6 @@
#include <unistd.h>
#include <vector>
-
#include <libcamera/base/event_dispatcher.h>
#include <libcamera/base/thread.h>
#include <libcamera/base/timer.h>
@@ -106,5 +105,7 @@ int main(int argc, char **argv)
return child.run(status);
}
- return ProcessTest().execute();
+ ProcessTest test;
+ test.setArgs(argc, argv);
+ return test.execute();
}