diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2021-11-29 23:02:27 +0200 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2021-12-01 08:54:12 +0200 |
commit | b24d9c4413b9d7f55f4105adeb7cf9a2450d3204 (patch) | |
tree | c896a9d23ffe729ffdac5146b965fe2e83fbdee8 /test/libtest/test.cpp | |
parent | 68e4f70a6937a69339c3f48502cd4e332c3a16ca (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/libtest/test.cpp')
-rw-r--r-- | test/libtest/test.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/libtest/test.cpp b/test/libtest/test.cpp index fd9f3d74..af37b4dd 100644 --- a/test/libtest/test.cpp +++ b/test/libtest/test.cpp @@ -17,6 +17,11 @@ Test::~Test() { } +void Test::setArgs([[maybe_unused]] int argc, char *argv[]) +{ + self_ = argv[0]; +} + int Test::execute() { int ret; |