diff options
author | Paul Dagnelie <[email protected]> | 2023-09-25 11:14:00 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2023-09-28 14:28:21 -0700 |
commit | 8526b12f3d6f751ec575ab582fd925bf0084a27e (patch) | |
tree | 444a765bfcf8cf49ad8164f2a2ee415bc4cf7cd6 /tests | |
parent | 0ce1b2ca19302df59a8c4fa8383f35cf549874de (diff) |
Set timeout before creating pool in test
Reviewed-by: Brian Behlendorf <[email protected]>
Reviewed-by: Rob Norris <[email protected]>
Signed-off-by: Paul Dagnelie <[email protected]>
Closes #15309
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/zfs-tests/tests/functional/block_cloning/block_cloning_copyfilerange_fallback_same_txg.ksh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/zfs-tests/tests/functional/block_cloning/block_cloning_copyfilerange_fallback_same_txg.ksh b/tests/zfs-tests/tests/functional/block_cloning/block_cloning_copyfilerange_fallback_same_txg.ksh index 74c5a5bec..17ce5c9ba 100755 --- a/tests/zfs-tests/tests/functional/block_cloning/block_cloning_copyfilerange_fallback_same_txg.ksh +++ b/tests/zfs-tests/tests/functional/block_cloning/block_cloning_copyfilerange_fallback_same_txg.ksh @@ -48,11 +48,11 @@ function cleanup log_onexit cleanup -log_must zpool create -o feature@block_cloning=enabled $TESTPOOL $DISKS - log_must set_tunable64 TXG_TIMEOUT 5000 log_must sync_pool $TESTPOOL true +log_must zpool create -o feature@block_cloning=enabled $TESTPOOL $DISKS + log_must dd if=/dev/urandom of=/$TESTPOOL/file bs=128K count=4 log_must clonefile -f /$TESTPOOL/file /$TESTPOOL/clone 0 0 524288 |