ntdll/tests: Report skip when time conversion functions are not available.

This commit is contained in:
Andrew Nguyen 2010-01-15 11:46:44 -06:00 committed by Alexandre Julliard
parent 83dbc3d46a
commit bffdda5ab2
1 changed files with 2 additions and 0 deletions

View File

@ -101,4 +101,6 @@ START_TEST(time)
pRtlTimeFieldsToTime = (void *)GetProcAddress(mod,"RtlTimeFieldsToTime");
if (pRtlTimeToTimeFields && pRtlTimeFieldsToTime)
test_pRtlTimeToTimeFields();
else
win_skip("Required time conversion functions are not available\n");
}