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>
This commit is contained in:
Laurent Pinchart 2021-11-29 23:02:27 +02:00
parent 68e4f70a69
commit b24d9c4413
6 changed files with 29 additions and 8 deletions

View file

@ -501,5 +501,7 @@ int main(int argc, char **argv)
return slave.run(ipcfd);
}
return UnixSocketTest().execute();
UnixSocketTest test;
test.setArgs(argc, argv);
return test.execute();
}

View file

@ -227,5 +227,7 @@ int main(int argc, char **argv)
return slave.run(ipcfd);
}
return UnixSocketTestIPC().execute();
UnixSocketTestIPC test;
test.setArgs(argc, argv);
return test.execute();
}