Changeset 60311 in vbox for trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-TestSkipped.c
- Timestamp:
- Apr 4, 2016 5:01:14 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-TestSkipped.c
r60019 r60311 39 39 BS3_DECL(void) Bs3TestSkippedV(const char *pszFormat, va_list va) 40 40 { 41 if ( BS3_DATA_NM(g_cusBs3TestErrors) == BS3_DATA_NM(g_cusBs3SubTestAtErrors))41 if (g_cusBs3TestErrors == g_cusBs3SubTestAtErrors) 42 42 { 43 43 /* Just mark it as skipped and deal with it when the sub-test is done. */ 44 BS3_DATA_NM(g_fbBs3SubTestSkipped)= true;44 g_fbBs3SubTestSkipped = true; 45 45 46 46 /* Tell VMMDev */ 47 if ( BS3_DATA_NM(g_fbBs3VMMDevTesting))47 if (g_fbBs3VMMDevTesting) 48 48 ASMOutU32(VMMDEV_TESTING_IOPORT_CMD, VMMDEV_TESTING_CMD_SKIPPED); 49 49 … … 54 54 Bs3StrFormatV(pszFormat, va, bs3TestFailedStrOutput, &fNewLine); 55 55 } 56 else if ( BS3_DATA_NM(g_fbBs3VMMDevTesting))56 else if (g_fbBs3VMMDevTesting) 57 57 ASMOutU8(VMMDEV_TESTING_IOPORT_DATA, 0); 58 58 }
Note:
See TracChangeset
for help on using the changeset viewer.