Searched refs:nowSecs (Results 1 – 2 of 2) sorted by relevance
1766 test_localtime(const char* tz, time_t nowSecs, const tm& expected) in test_localtime() argument1772 tm* result = localtime_r(&nowSecs, &now); in test_localtime()1775 printf("\tPROBLEM: localtime(\"%ld\") = NULL\n", nowSecs); in test_localtime()1841 test_gmtime(const char* tz, time_t nowSecs, const tm& expected) in test_gmtime() argument1847 tm* result = gmtime_r(&nowSecs, &now); in test_gmtime()1850 printf("\tPROBLEM: localtime(\"%ld\") = NULL\n", nowSecs); in test_gmtime()
2615 time_t nowSecs = 1279391169; // pure magic in test_wcsftime() local2616 tm* now = localtime(&nowSecs); in test_wcsftime()