summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Dagnelie <[email protected]>2016-09-02 21:07:15 -0700
committerBrian Behlendorf <[email protected]>2016-09-12 15:46:19 -0700
commitb8eb3c4e3cbdf284087ea0eda58a2681ab3e8e11 (patch)
tree8b279f7e8eead250b7ee00d2a8a0ec5905afd260
parenta425f5bff92f2db78f588543f49ce3abbd98a7f9 (diff)
OpenZFS 7262 - remove seq from zfs_receive_010.ksh
Authored by: Paul Dagnelie <[email protected]> Reviewed by: John Wren Kennedy <[email protected]> Reviewed by: Matthew Ahrens <[email protected]> Reviewed by: Prakash Surya <[email protected]> Reviewed by: Yuri Pankov <[email protected]> Reviewed by: Brian Behlendorf <[email protected]> Approved by: Dan McDonald <[email protected]> Ported-by: candychencan <[email protected]> OpenZFS-issue: https://www.illumos.org/issues/7262 OpenZFS-commit: https://github.com/illumos/illumos-gate/commit/b868f5d Closes #5080
-rwxr-xr-xtests/zfs-tests/tests/functional/cli_root/zfs_receive/zfs_receive_010_pos.ksh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/zfs-tests/tests/functional/cli_root/zfs_receive/zfs_receive_010_pos.ksh b/tests/zfs-tests/tests/functional/cli_root/zfs_receive/zfs_receive_010_pos.ksh
index b1fbff297..511463f33 100755
--- a/tests/zfs-tests/tests/functional/cli_root/zfs_receive/zfs_receive_010_pos.ksh
+++ b/tests/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