svn commit: r304037 - projects/netbsd-tests-update-12/contrib/netbsd-tests/lib/libc/db
Garrett Cooper
ngie at FreeBSD.org
Sat Aug 13 05:42:12 UTC 2016
Author: ngie
Date: Sat Aug 13 05:42:11 2016
New Revision: 304037
URL: https://svnweb.freebsd.org/changeset/base/304037
Log:
Skip 64kB bucket testcases
This bucket size isn't supported on FreeBSD
Sponsored by: EMC / Isilon Storage Division
Modified:
projects/netbsd-tests-update-12/contrib/netbsd-tests/lib/libc/db/t_db.sh
Modified: projects/netbsd-tests-update-12/contrib/netbsd-tests/lib/libc/db/t_db.sh
==============================================================================
--- projects/netbsd-tests-update-12/contrib/netbsd-tests/lib/libc/db/t_db.sh Sat Aug 13 04:45:39 2016 (r304036)
+++ projects/netbsd-tests-update-12/contrib/netbsd-tests/lib/libc/db/t_db.sh Sat Aug 13 05:42:11 2016 (r304037)
@@ -910,9 +910,15 @@ bsize_ffactor_body()
h_bsize_ffactor 32768 455
h_bsize_ffactor 32768 683
+ # Begin FreeBSD
+ if false; then
+ # End FreeBSD
h_bsize_ffactor 65536 341
h_bsize_ffactor 65536 455
h_bsize_ffactor 65536 683
+ # Begin FreeBSD
+ fi
+ # End FreeBSD
}
# This tests 64K block size addition/removal
@@ -958,7 +964,11 @@ bsize_torture_body()
{
TMPDIR="$(pwd)/db_dir"; export TMPDIR
mkdir ${TMPDIR}
- for i in 2048 4096 8192 16384 32768 65536
+ # Begin FreeBSD
+ #
+ # db(3) doesn't support 64kB bucket sizes
+ for i in 2048 4096 8192 16384 32768 # 65536
+ # End FreeBSD
do
atf_check "$(prog_lfsr)" $i
done
More information about the svn-src-projects
mailing list