mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 14:53:40 +00:00
Output "SYSREG_ROSAUTOTEST_FAILURE" for sysreg2 in case of a failure inside rosautotest
svn path=/trunk/; revision=40211
This commit is contained in:
parent
0a05554c18
commit
1463b225be
1 changed files with 5 additions and 1 deletions
|
@ -59,7 +59,7 @@ wmain(int argc, wchar_t* argv[])
|
||||||
/* Run the tests */
|
/* Run the tests */
|
||||||
WineTest.Run();
|
WineTest.Run();
|
||||||
|
|
||||||
/* For sysreg */
|
/* For sysreg2 */
|
||||||
DbgPrint("SYSREG_CHECKPOINT:THIRDBOOT_COMPLETE\n");
|
DbgPrint("SYSREG_CHECKPOINT:THIRDBOOT_COMPLETE\n");
|
||||||
|
|
||||||
ReturnValue = 0;
|
ReturnValue = 0;
|
||||||
|
@ -84,6 +84,10 @@ wmain(int argc, wchar_t* argv[])
|
||||||
StringOut(ss.str());
|
StringOut(ss.str());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* For sysreg2 to notice if rosautotest itself failed */
|
||||||
|
if(ReturnValue == 1)
|
||||||
|
DbgPrint("SYSREG_ROSAUTOTEST_FAILURE\n");
|
||||||
|
|
||||||
/* Shut down the system if requested, also in case of an exception above */
|
/* Shut down the system if requested, also in case of an exception above */
|
||||||
if(Configuration.DoShutdown() && !ShutdownSystem())
|
if(Configuration.DoShutdown() && !ShutdownSystem())
|
||||||
ReturnValue = 1;
|
ReturnValue = 1;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue