summaryrefslogtreecommitdiff
path: root/tests/lib/libutil
diff options
context:
space:
mode:
authorkre <kre@NetBSD.org>2017-03-22 01:00:19 +0000
committerkre <kre@NetBSD.org>2017-03-22 01:00:19 +0000
commit4c0d6fc01e78b9d07ab9c4e4fec74e0cd527fd46 (patch)
tree528fc07bcaeaaaa20dcb3897b84eabd997d1b9f0 /tests/lib/libutil
parent64f55fa1e7e1f2130b864954b76a0cb13938cdbf (diff)
Since PR lib/52101 is now fixed, the tests for its bug should no longer fail.
Diffstat (limited to 'tests/lib/libutil')
-rw-r--r--tests/lib/libutil/t_parsedate.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/tests/lib/libutil/t_parsedate.c b/tests/lib/libutil/t_parsedate.c
index 67eb6a9a05e..761f7049476 100644
--- a/tests/lib/libutil/t_parsedate.c
+++ b/tests/lib/libutil/t_parsedate.c
@@ -1,4 +1,4 @@
-/* $NetBSD: t_parsedate.c,v 1.27 2017/03/21 21:42:18 kre Exp $ */
+/* $NetBSD: t_parsedate.c,v 1.28 2017/03/22 01:00:19 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.27 2017/03/21 21:42:18 kre Exp $");
+__RCSID("$NetBSD: t_parsedate.c,v 1.28 2017/03/22 01:00:19 kre Exp $");
#include <atf-c.h>
#include <errno.h>
@@ -184,7 +184,12 @@ ATF_TC_BODY(times, tc)
parsecheck("noon", NULL, NULL, localtime_r,
ANY, ANY, ANY, 12, 0, 0);
+ /*
+ * The following tests used to trigger the bug from PR lib/52101
+ * but that is fixed now.
+ *
atf_tc_expect_fail("PR lib/52101");
+ */
parsecheck("12:30 am", NULL, NULL, localtime_r,
ANY, ANY, ANY, 0, 30, 0);
@@ -203,6 +208,8 @@ ATF_TC_BODY(times, tc)
ANY, ANY, ANY, 0, 0, 0);
parsecheck("12pm", NULL, NULL, localtime_r,
ANY, ANY, ANY, 12, 0, 0);
+
+ /* end 52010 bug tests */
}
ATF_TC(dsttimes);