-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use 100MB pool for filetest_001_pos.ksh checksum test
As part of its tests, filetest_001_pos.ksh wipes the entire vdev to create checksum errors. This patch uses the setup/cleanup scripts from the scrub_mirror test to create a custom 100MB pool, rather than using the entire device size that is passed into zfs-tests.sh (which defaults to 2GB). This speeds up the buildbot tests, and also makes it possible for someone to use real disks (say, 1TB) without the test taking an insanely long amount of time.
- Loading branch information
1 parent
5819c51
commit ef6f364
Showing
5 changed files
with
112 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
# | ||
# CDDL HEADER START | ||
# | ||
# The contents of this file are subject to the terms of the | ||
# Common Development and Distribution License (the "License"). | ||
# You may not use this file except in compliance with the License. | ||
# | ||
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE | ||
# or http://www.opensolaris.org/os/licensing. | ||
# See the License for the specific language governing permissions | ||
# and limitations under the License. | ||
# | ||
# When distributing Covered Code, include this CDDL HEADER in each | ||
# file and include the License file at usr/src/OPENSOLARIS.LICENSE. | ||
# If applicable, add the following below this CDDL HEADER, with the | ||
# fields enclosed by brackets "[]" replaced with your own identifying | ||
# information: Portions Copyright [yyyy] [name of copyright owner] | ||
# | ||
# CDDL HEADER END | ||
# | ||
|
||
# | ||
# Copyright 2008 Sun Microsystems, Inc. All rights reserved. | ||
# Use is subject to license terms. | ||
# | ||
|
||
# | ||
# Copyright (c) 2013 by Delphix. All rights reserved. | ||
# | ||
|
||
typeset -i NUMBER_OF_DISKS=0 | ||
for i in $DISKS; do | ||
[[ -n $MIRROR_PRIMARY ]] && MIRROR_SECONDARY=$i | ||
[[ -z $MIRROR_PRIMARY ]] && MIRROR_PRIMARY=$i | ||
done | ||
|
||
if [[ -z $MIRROR_SECONDARY ]]; then | ||
# We need to repartition the single disk to two slices | ||
SINGLE_DISK=$MIRROR_PRIMARY | ||
MIRROR_SECONDARY=$MIRROR_PRIMARY | ||
SIDE_PRIMARY_PART=0 | ||
SIDE_SECONDARY_PART=1 | ||
if is_linux; then | ||
SIDE_PRIMARY=${SINGLE_DISK}p1 | ||
SIDE_SECONDARY=${SINGLE_DISK}p2 | ||
else | ||
SIDE_PRIMARY=${SINGLE_DISK}s${SIDE_PRIMARY_PART} | ||
SIDE_SECONDARY=${SINGLE_DISK}s${SIDE_SECONDARY_PART} | ||
fi | ||
else | ||
SIDE_PRIMARY_PART=0 | ||
SIDE_SECONDARY_PART=0 | ||
if is_linux; then | ||
SIDE_PRIMARY=${MIRROR_PRIMARY}p1 | ||
SIDE_SECONDARY=${MIRROR_SECONDARY}p1 | ||
else | ||
SIDE_PRIMARY=${MIRROR_PRIMARY}s${SIDE_PRIMARY_PART} | ||
SIDE_SECONDARY=${MIRROR_SECONDARY}s${SIDE_SECONDARY_PART} | ||
fi | ||
fi | ||
|
||
|
||
export MIRROR_PRIMARY MIRROR_SECONDARY SINGLE_DISK SIDE_PRIMARY SIDE_SECONDARY | ||
|
||
export MIRROR_MEGS=100 | ||
export MIRROR_SIZE=${MIRROR_MEGS}m # default mirror size |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters