yuzutest: Support multiple tests per executable

This commit is contained in:
Zach Hilman 2019-04-04 18:05:57 -04:00
parent 5ddc9cede5
commit f279e792b7
4 changed files with 45 additions and 37 deletions

View file

@ -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