yuzutest: Support multiple tests per executable
This commit is contained in:
parent
5ddc9cede5
commit
f279e792b7
4 changed files with 45 additions and 37 deletions
|
@ -170,7 +170,7 @@ int main(int argc, char** argv) {
|
|||
|
||||
bool finished = false;
|
||||
int return_value = 0;
|
||||
const auto callback = [&finished, &return_value](u32 code, std::string string) {
|
||||
const auto callback = [&finished, &return_value](std::vector<Service::Yuzu::TestResult>) {
|
||||
finished = true;
|
||||
return_value = code & 0xFF;
|
||||
const auto text = fmt::format("Test Finished [Result Code: {:08X}]\n{}", code, string);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue