yuzutest: Support multiple tests per executable
This commit is contained in:
parent
5ddc9cede5
commit
f279e792b7
4 changed files with 45 additions and 37 deletions
|
@ -13,7 +13,13 @@ class ServiceManager;
|
|||
|
||||
namespace Service::Yuzu {
|
||||
|
||||
struct TestResult {
|
||||
u32 code;
|
||||
std::string data;
|
||||
std::string name;
|
||||
};
|
||||
|
||||
void InstallInterfaces(SM::ServiceManager& sm, std::string data,
|
||||
std::function<void(u32, std::string)> finish_callback);
|
||||
std::function<void(std::vector<TestResult>)> finish_callback);
|
||||
|
||||
} // namespace Service::Yuzu
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue