mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2025-01-27 05:43:51 +01:00
Merge pull request #2695 from SBird1337/hydra/better-output
Improve Hydra output
This commit is contained in:
commit
6b08120d5f
@ -187,7 +187,17 @@ void CB2_TestRunner(void)
|
||||
|
||||
switch (gTestRunnerState.result)
|
||||
{
|
||||
case TEST_RESULT_FAIL: result = "FAIL"; break;
|
||||
case TEST_RESULT_FAIL:
|
||||
if (gTestRunnerState.expectedResult == TEST_RESULT_FAIL)
|
||||
{
|
||||
result = "KNOWN_FAILING";
|
||||
color = "\e[33m";
|
||||
}
|
||||
else
|
||||
{
|
||||
result = "FAIL";
|
||||
}
|
||||
break;
|
||||
case TEST_RESULT_PASS: result = "PASS"; break;
|
||||
case TEST_RESULT_SKIP: result = "SKIP"; break;
|
||||
case TEST_RESULT_INVALID: result = "INVALID"; break;
|
||||
|
Loading…
x
Reference in New Issue
Block a user