diff options
author | Enji Cooper <ngie@FreeBSD.org> | 2017-07-06 07:45:20 +0000 |
---|---|---|
committer | Enji Cooper <ngie@FreeBSD.org> | 2017-07-06 07:45:20 +0000 |
commit | 1f73e6d88857c1c39c95fea98775b6897316c08b (patch) | |
tree | 2df57e8c3f6468e4ae14b8f253a2a3889a893326 | |
parent | c5ad99fc69a8439415c449c6bced3a0b900b5ad6 (diff) |
Notes
-rw-r--r-- | contrib/netbsd-tests/lib/libc/stdio/t_printf.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/contrib/netbsd-tests/lib/libc/stdio/t_printf.c b/contrib/netbsd-tests/lib/libc/stdio/t_printf.c index 95b4b2c9dffe0..4cb19fe825137 100644 --- a/contrib/netbsd-tests/lib/libc/stdio/t_printf.c +++ b/contrib/netbsd-tests/lib/libc/stdio/t_printf.c @@ -140,6 +140,10 @@ ATF_TC_BODY(snprintf_float, tc) char buf[1000]; struct rlimit rl; +#ifdef __FreeBSD__ + atf_tc_expect_signal(SIGSEGV, "test segfaults; PR # 220502"); +#endif + rl.rlim_cur = rl.rlim_max = 1 * 1024 * 1024; ATF_CHECK(setrlimit(RLIMIT_AS, &rl) != -1); rl.rlim_cur = rl.rlim_max = 1 * 1024 * 1024; |