diff options
author | Paul Dagnelie <pcd@delphix.com> | 2016-09-02 21:07:15 -0700 |
---|---|---|
committer | Matthew Ahrens <mahrens@delphix.com> | 2016-09-06 20:13:00 -0700 |
commit | b868f5d28c02403ad3cd322ee1635887f494ebe9 (patch) | |
tree | cb572f919f2d6242e0e51e44fdb38ba266005525 | |
parent | 007a6c1f69652d7e3f2d2012a9332221d430491b (diff) | |
download | illumos-joyent-b868f5d28c02403ad3cd322ee1635887f494ebe9.tar.gz |
7262 remove seq from zfs_receive_010.ksh
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>
Approved by: Dan McDonald <danmcd@omniti.com>
-rw-r--r-- | usr/src/test/zfs-tests/tests/functional/cli_root/zfs_receive/zfs_receive_010_pos.ksh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/src/test/zfs-tests/tests/functional/cli_root/zfs_receive/zfs_receive_010_pos.ksh b/usr/src/test/zfs-tests/tests/functional/cli_root/zfs_receive/zfs_receive_010_pos.ksh index b1fbff2976..511463f331 100644 --- a/usr/src/test/zfs-tests/tests/functional/cli_root/zfs_receive/zfs_receive_010_pos.ksh +++ b/usr/src/test/zfs-tests/tests/functional/cli_root/zfs_receive/zfs_receive_010_pos.ksh @@ -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 |