]> git.saurik.com Git - apple/libc.git/blame - tests/strptime.c
Libc-1158.50.2.tar.gz
[apple/libc.git] / tests / strptime.c
CommitLineData
974e3884
A
1#include <time.h>
2
3#include <darwintest.h>
4#include <darwintest_utils.h>
5
6T_DECL(PR_27004626, "strptime() should fail when a %t doesn't match anything")
7{
8 struct tm tm;
9 T_ASSERT_NULL(strptime("there'snotemplateforthis", "%t", &tm), NULL);
10}