xref: /illumos-gate/usr/src/test/zfs-tests/tests/functional/trim/trim.cfg (revision 084fd14f7c3336eb67ee283cabad2da8998b00d6)
1*084fd14fSBrian Behlendorf#!/bin/ksh -p
2*084fd14fSBrian Behlendorf#
3*084fd14fSBrian Behlendorf# CDDL HEADER START
4*084fd14fSBrian Behlendorf#
5*084fd14fSBrian Behlendorf# The contents of this file are subject to the terms of the
6*084fd14fSBrian Behlendorf# Common Development and Distribution License (the "License").
7*084fd14fSBrian Behlendorf# You may not use this file except in compliance with the License.
8*084fd14fSBrian Behlendorf#
9*084fd14fSBrian Behlendorf# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10*084fd14fSBrian Behlendorf# or http://www.opensolaris.org/os/licensing.
11*084fd14fSBrian Behlendorf# See the License for the specific language governing permissions
12*084fd14fSBrian Behlendorf# and limitations under the License.
13*084fd14fSBrian Behlendorf#
14*084fd14fSBrian Behlendorf# When distributing Covered Code, include this CDDL HEADER in each
15*084fd14fSBrian Behlendorf# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16*084fd14fSBrian Behlendorf# If applicable, add the following below this CDDL HEADER, with the
17*084fd14fSBrian Behlendorf# fields enclosed by brackets "[]" replaced with your own identifying
18*084fd14fSBrian Behlendorf# information: Portions Copyright [yyyy] [name of copyright owner]
19*084fd14fSBrian Behlendorf#
20*084fd14fSBrian Behlendorf# CDDL HEADER END
21*084fd14fSBrian Behlendorf#
22*084fd14fSBrian Behlendorf
23*084fd14fSBrian Behlendorf#
24*084fd14fSBrian Behlendorf# Copyright (c) 2019 by Tim Chase. All rights reserved.
25*084fd14fSBrian Behlendorf# Copyright (c) 2019 Lawrence Livermore National Security, LLC.
26*084fd14fSBrian Behlendorf#
27*084fd14fSBrian Behlendorf
28*084fd14fSBrian BehlendorfTRIM_DIR="$TEST_BASE_DIR"
29*084fd14fSBrian BehlendorfTRIM_VDEV1="$TRIM_DIR/trim-vdev1"
30*084fd14fSBrian BehlendorfTRIM_VDEV2="$TRIM_DIR/trim-vdev2"
31*084fd14fSBrian BehlendorfTRIM_VDEV3="$TRIM_DIR/trim-vdev3"
32*084fd14fSBrian BehlendorfTRIM_VDEV4="$TRIM_DIR/trim-vdev4"
33*084fd14fSBrian BehlendorfTRIM_VDEVS="$TRIM_VDEV1 $TRIM_VDEV2 $TRIM_VDEV3 $TRIM_VDEV4"
34