diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2016-12-19 04:55:19 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2016-12-19 04:55:19 +0000 |
commit | 39e2670b089fc6e45da646afcdbd71732fc9fd14 (patch) | |
tree | 650589350b079d6199a77caf4b891e80da5cc986 /regress | |
parent | cd6b16aa1c89cf639db327390647f3b70d1b6f7a (diff) |
remove testcase that depends on exact output and behaviour of
snprintf(..., "%s", NULL)
Diffstat (limited to 'regress')
-rw-r--r-- | regress/usr.bin/ssh/unittests/utf8/tests.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/regress/usr.bin/ssh/unittests/utf8/tests.c b/regress/usr.bin/ssh/unittests/utf8/tests.c index fad2ec27944..1f1fea1bcca 100644 --- a/regress/usr.bin/ssh/unittests/utf8/tests.c +++ b/regress/usr.bin/ssh/unittests/utf8/tests.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tests.c,v 1.2 2016/05/30 12:05:56 schwarze Exp $ */ +/* $OpenBSD: tests.c,v 1.3 2016/12/19 04:55:18 djm Exp $ */ /* * Regress test for the utf8.h *mprintf() API * @@ -63,7 +63,6 @@ tests(void) TEST_DONE(); badarg(); - one("null", NULL, 8, 6, 6, "(null)"); one("empty", "", 2, 0, 0, ""); one("ascii", "x", -2, -2, -2, "x"); one("newline", "a\nb", -2, -2, -2, "a\nb"); |