15cabbc6bSPrashanth Sreenivasa#! /bin/ksh -p
25cabbc6bSPrashanth Sreenivasa#
35cabbc6bSPrashanth Sreenivasa# CDDL HEADER START
45cabbc6bSPrashanth Sreenivasa#
55cabbc6bSPrashanth Sreenivasa# This file and its contents are supplied under the terms of the
65cabbc6bSPrashanth Sreenivasa# Common Development and Distribution License ("CDDL"), version 1.0.
75cabbc6bSPrashanth Sreenivasa# You may only use this file in accordance with the terms of version
85cabbc6bSPrashanth Sreenivasa# 1.0 of the CDDL.
95cabbc6bSPrashanth Sreenivasa#
105cabbc6bSPrashanth Sreenivasa# A full copy of the text of the CDDL should have accompanied this
115cabbc6bSPrashanth Sreenivasa# source.  A copy of the CDDL is also available via the Internet at
125cabbc6bSPrashanth Sreenivasa# http://www.illumos.org/license/CDDL.
135cabbc6bSPrashanth Sreenivasa#
145cabbc6bSPrashanth Sreenivasa# CDDL HEADER END
155cabbc6bSPrashanth Sreenivasa#
165cabbc6bSPrashanth Sreenivasa
175cabbc6bSPrashanth Sreenivasa#
185cabbc6bSPrashanth Sreenivasa# Copyright (c) 2014, 2016 by Delphix. All rights reserved.
195cabbc6bSPrashanth Sreenivasa#
205cabbc6bSPrashanth Sreenivasa
215cabbc6bSPrashanth Sreenivasa. $STF_SUITE/include/libtest.shlib
225cabbc6bSPrashanth Sreenivasa. $STF_SUITE/tests/functional/removal/removal.kshlib
235cabbc6bSPrashanth Sreenivasa
24*8ac4d283SToomas SoomeTMPDIR=${TMPDIR:-$TEST_BASE_DIR}
255cabbc6bSPrashanth Sreenivasalog_must mkfile $MINVDEVSIZE $TMPDIR/dsk1
265cabbc6bSPrashanth Sreenivasalog_must mkfile $MINVDEVSIZE $TMPDIR/dsk2
275cabbc6bSPrashanth SreenivasaDISKS="$TMPDIR/dsk1 $TMPDIR/dsk2"
285cabbc6bSPrashanth SreenivasaREMOVEDISK=$TMPDIR/dsk1
295cabbc6bSPrashanth Sreenivasa
305cabbc6bSPrashanth Sreenivasalog_must default_setup_noexit "$DISKS"
315cabbc6bSPrashanth Sreenivasa
325cabbc6bSPrashanth Sreenivasafunction cleanup
335cabbc6bSPrashanth Sreenivasa{
345cabbc6bSPrashanth Sreenivasa	default_cleanup_noexit
355cabbc6bSPrashanth Sreenivasa	log_must rm -f $DISKS
365cabbc6bSPrashanth Sreenivasa}
375cabbc6bSPrashanth Sreenivasalog_onexit cleanup
385cabbc6bSPrashanth Sreenivasa
395cabbc6bSPrashanth Sreenivasa# Write a little more than half the pool.
405cabbc6bSPrashanth Sreenivasalog_must dd if=/dev/urandom of=/$TESTDIR/$TESTFILE0 bs=$((2**20)) \
415cabbc6bSPrashanth Sreenivasa    count=$((MINVDEVSIZE / (1024 * 1024)))
425cabbc6bSPrashanth Sreenivasalog_mustnot zpool remove $TESTPOOL $TMPDIR/dsk1
435cabbc6bSPrashanth Sreenivasa
445cabbc6bSPrashanth Sreenivasalog_pass "Removal will not succeed if insufficient space."
45