Module Name: src
Committed By: kre
Date: Wed Jun 22 15:01:38 UTC 2016
Modified Files:
src/tests/lib/libutil: t_parsedate.c
Log Message:
Remove tests of "dawn" and "sunset" in preparation for removing
them from parsedate() itself sometime soon.
To generate a diff of this commit:
cvs rdiff -u -r1.24 -r1.25 src/tests/lib/libutil/t_parsedate.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/tests/lib/libutil/t_parsedate.c
diff -u src/tests/lib/libutil/t_parsedate.c:1.24 src/tests/lib/libutil/t_parsedate.c:1.25
--- src/tests/lib/libutil/t_parsedate.c:1.24 Thu May 5 02:12:21 2016
+++ src/tests/lib/libutil/t_parsedate.c Wed Jun 22 15:01:38 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: t_parsedate.c,v 1.24 2016/05/05 02:12:21 kre Exp $ */
+/* $NetBSD: t_parsedate.c,v 1.25 2016/06/22 15:01:38 kre Exp $ */
/*-
* Copyright (c) 2010, 2015 The NetBSD Foundation, Inc.
* All rights reserved.
@@ -29,7 +29,7 @@
*/
#include <sys/cdefs.h>
-__RCSID("$NetBSD: t_parsedate.c,v 1.24 2016/05/05 02:12:21 kre Exp $");
+__RCSID("$NetBSD: t_parsedate.c,v 1.25 2016/06/22 15:01:38 kre Exp $");
#include <atf-c.h>
#include <errno.h>
@@ -180,10 +180,6 @@ ATF_TC_BODY(times, tc)
ANY, ANY, ANY, 0, 0, 0);
parsecheck("noon", NULL, NULL, localtime_r,
ANY, ANY, ANY, 12, 0, 0);
- parsecheck("dawn", NULL, NULL, localtime_r,
- ANY, ANY, ANY, 6, 0, 0);
- parsecheck("sunset", NULL, NULL, localtime_r,
- ANY, ANY, ANY, 18, 0, 0);
}
ATF_TC(dsttimes);