OpenZFS 7262 - remove seq from zfs_receive_010.ksh
Authored by: Paul Dagnelie <pcd@delphix.com> Reviewed by: John Wren Kennedy <john.kennedy@delphix.com> Reviewed by: Matthew Ahrens <mahrens@delphix.com> Reviewed by: Prakash Surya <prakash.surya@delphix.com> Reviewed by: Yuri Pankov <yuri.pankov@nexenta.com> Reviewed by: Brian Behlendorf <behlendorf1@llnl.gov> Approved by: Dan McDonald <danmcd@omniti.com> Ported-by: candychencan <chen.can2@zte.com.cn> OpenZFS-issue: https://www.illumos.org/issues/7262 OpenZFS-commit: https://github.com/illumos/illumos-gate/commit/b868f5d Closes #5080
This commit is contained in:
parent
a425f5bff9
commit
b8eb3c4e3c
|
@ -21,7 +21,7 @@
|
|||
#
|
||||
|
||||
#
|
||||
# Copyright (c) 2015 by Delphix. All rights reserved.
|
||||
# Copyright (c) 2015, 2016 by Delphix. All rights reserved.
|
||||
#
|
||||
|
||||
. $STF_SUITE/include/libtest.shlib
|
||||
|
@ -138,7 +138,7 @@ $RM $mntpnt/h17
|
|||
$RM $mntpnt2/h*
|
||||
|
||||
# Add empty objects to $fs to exercise dmu_traverse code
|
||||
for i in `seq 1 100`; do
|
||||
for i in {1..100}; do
|
||||
log_must touch $mntpnt/uf$i
|
||||
done
|
||||
|
||||
|
|
Loading…
Reference in New Issue