diff options
author | ngie <ngie@FreeBSD.org> | 2017-02-09 21:29:18 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2017-02-09 21:29:18 +0000 |
commit | 237637fa313dcd7c981f44ea35296cda3be981cb (patch) | |
tree | e8cf419be1d38e5ddc43e32a0db1706f4748676f /contrib/netbsd-tests | |
parent | fec4dffc3487939185515738cb54d7b0e89a1921 (diff) | |
download | FreeBSD-src-237637fa313dcd7c981f44ea35296cda3be981cb.zip FreeBSD-src-237637fa313dcd7c981f44ea35296cda3be981cb.tar.gz |
MFC r276527:
Don't install h_raw if dealing with clang 3.5.0+ to unbreak the tests2 Jenkins
job
The h_raw application doesn't do proper bounds checking without the option
being supplied via the build, which means that it doesn't throw signals and
fail as expected
PR: 196430
Diffstat (limited to 'contrib/netbsd-tests')
-rwxr-xr-x | contrib/netbsd-tests/lib/libc/ssp/t_ssp.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/contrib/netbsd-tests/lib/libc/ssp/t_ssp.sh b/contrib/netbsd-tests/lib/libc/ssp/t_ssp.sh index 2986ccf..e535e3e 100755 --- a/contrib/netbsd-tests/lib/libc/ssp/t_ssp.sh +++ b/contrib/netbsd-tests/lib/libc/ssp/t_ssp.sh @@ -361,6 +361,9 @@ raw_head() raw_body() { prog="$(atf_get_srcdir)/h_raw" + # Begin FreeBSD + [ -x $prog ] || atf_skip "$prog is missing; skipping testcase" + # End FreeBSD h_pass "$prog 9" # Begin FreeBSD |