xref: /illumos-gate/usr/src/test/zfs-tests/include/default.cfg (revision 45818ee124adeaaf947698996b4f4c722afc6d1f)
1#
2# CDDL HEADER START
3#
4# The contents of this file are subject to the terms of the
5# Common Development and Distribution License (the "License").
6# You may not use this file except in compliance with the License.
7#
8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9# or http://www.opensolaris.org/os/licensing.
10# See the License for the specific language governing permissions
11# and limitations under the License.
12#
13# When distributing Covered Code, include this CDDL HEADER in each
14# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15# If applicable, add the following below this CDDL HEADER, with the
16# fields enclosed by brackets "[]" replaced with your own identifying
17# information: Portions Copyright [yyyy] [name of copyright owner]
18#
19# CDDL HEADER END
20#
21
22#
23# Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
24# Use is subject to license terms.
25#
26
27#
28# Copyright (c) 2012, 2014 by Delphix. All rights reserved.
29#
30
31. $STF_SUITE/include/commands.cfg
32. $STF_SUITE/include/libtest.shlib
33
34# Define run length constants
35export RT_LONG="3"
36export RT_MEDIUM="2"
37export RT_SHORT="1"
38
39# Define macro for zone test
40export ZONE_POOL="zonepool"
41export ZONE_CTR="zonectr"
42
43# Test Suite Specific Commands
44export CHG_USR_EXEC="/opt/zfs-tests/bin/chg_usr_exec"
45export DEVNAME2DEVID="/opt/zfs-tests/bin/devname2devid"
46export DIR_RD_UPDATE="/opt/zfs-tests/bin/dir_rd_update"
47export FILE_CHECK="/opt/zfs-tests/bin/file_check"
48export FILE_TRUNC="/opt/zfs-tests/bin/file_trunc"
49export FILE_WRITE="/opt/zfs-tests/bin/file_write"
50export GETHOLES="/opt/zfs-tests/bin/getholes"
51export LARGEST_FILE="/opt/zfs-tests/bin/largest_file"
52export MKBUSY="/opt/zfs-tests/bin/mkbusy"
53export MKHOLES="/opt/zfs-tests/bin/mkholes"
54export MKTREE="/opt/zfs-tests/bin/mktree"
55export MMAPWRITE="/opt/zfs-tests/bin/mmapwrite"
56export RANDFREE_FILE="/opt/zfs-tests/bin/randfree_file"
57export READMMAP="/opt/zfs-tests/bin/readmmap"
58export RENAME_DIR="/opt/zfs-tests/bin/rename_dir"
59export RM_LNKCNT_ZERO_FILE="/opt/zfs-tests/bin/rm_lnkcnt_zero_file"
60
61# ensure we're running in the C locale, since
62# localised messages may result in test failures
63export LC_ALL="C"
64export LANG="C"
65
66#
67# pattern to ignore from 'zpool list'.
68#
69export NO_POOLS="no pools available"
70
71# pattern to ignore from 'zfs list'.
72export NO_DATASETS="no datasets available"
73
74export TEST_BASE_DIR="/"
75
76# Default to compression ON
77export COMPRESSION_PROP=on
78
79# Default to using the checksum
80export CHECKSUM_PROP=on
81
82# some common variables used by test scripts :
83
84# some test pool names
85export TESTPOOL=testpool.$$
86export TESTPOOL1=testpool1.$$
87export TESTPOOL2=testpool2.$$
88export TESTPOOL3=testpool3.$$
89
90# some test file system names
91export TESTFS=testfs.$$
92export TESTFS1=testfs1.$$
93export TESTFS2=testfs2.$$
94export TESTFS3=testfs3.$$
95
96# some test directory names
97export TESTDIR=${TEST_BASE_DIR%%/}/testdir$$
98export TESTDIR0=${TEST_BASE_DIR%%/}/testdir0$$
99export TESTDIR1=${TEST_BASE_DIR%%/}/testdir1$$
100export TESTDIR2=${TEST_BASE_DIR%%/}/testdir2$$
101
102export ZFSROOT=
103
104export TESTSNAP=testsnap$$
105export TESTSNAP1=testsnap1$$
106export TESTSNAP2=testsnap2$$
107export TESTCLONE=testclone$$
108export TESTCLONE1=testclone1$$
109export TESTCLONE2=testclone2$$
110export TESTCLCT=testclct$$
111export TESTCTR=testctr$$
112export TESTCTR1=testctr1$$
113export TESTCTR2=testctr2$$
114export TESTVOL=testvol$$
115export TESTVOL1=testvol1$$
116export TESTVOL2=testvol2$$
117export TESTFILE0=testfile0.$$
118export TESTFILE1=testfile1.$$
119export TESTFILE2=testfile2.$$
120
121export LONGPNAME="poolname50charslong_012345678901234567890123456789"
122export LONGFSNAME="fsysname50charslong_012345678901234567890123456789"
123export SNAPFS="$TESTPOOL/$TESTFS@$TESTSNAP"
124export SNAPFS1="$TESTPOOL/$TESTVOL@$TESTSNAP"
125
126export VOLSIZE=150m
127export BIGVOLSIZE=1eb
128
129# Default to limit disks to be checked
130export MAX_FINDDISKSNUM=6
131
132# For iscsi target support
133export ISCSITGTFILE=/tmp/iscsitgt_file
134export ISCSITGT_FMRI=svc:/system/iscsitgt:default
135
136export AUTO_SNAP=$($SVCS -a | $GREP auto-snapshot | $GREP online | $AWK \
137    '{print $3}')
138
139#
140# finally, if we're running in a local zone
141# we take some additional actions
142if ! is_global_zone; then
143	reexport_pool
144fi
145
146export ZFS_VERSION=5
147export ZFS_ALL_VERSIONS="1 2 3 4 5"
148
149for i in $ZFS_ALL_VERSIONS; do
150	eval 'export ZFS_VERSION_$i="v${i}-fs"'
151done
152