diff options
| author | Jose Luis Duran <jlduran@FreeBSD.org> | 2026-01-05 20:32:24 +0000 |
|---|---|---|
| committer | Jose Luis Duran <jlduran@FreeBSD.org> | 2026-01-15 19:37:52 +0000 |
| commit | 463c0b8896cb3dc615af9a17698b7b66a1fdbee4 (patch) | |
| tree | 2cfe49257a864e6d72d825263d33e91c085aeae8 | |
| parent | f8b5a8a97743547ee7145606c708d696a86c8abe (diff) | |
makefs: tests: Double the timeout of ZFS file_extend test
The test makefs_zfs_tests:file_extend is timing out on ci.freebsd.org.
Double the default timeout to allow it to finish.
Reported by: Jenkins
Reviewed by: asomers
MFC after: 1 week
Differential Revision: https://reviews.freebsd.org/D54425
(cherry picked from commit 065f02174f76a49fbf537ee51ed8068d3d398b08)
| -rw-r--r-- | usr.sbin/makefs/tests/makefs_zfs_tests.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/usr.sbin/makefs/tests/makefs_zfs_tests.sh b/usr.sbin/makefs/tests/makefs_zfs_tests.sh index ac4c56796011..1694fa05683b 100644 --- a/usr.sbin/makefs/tests/makefs_zfs_tests.sh +++ b/usr.sbin/makefs/tests/makefs_zfs_tests.sh @@ -312,6 +312,12 @@ empty_fs_cleanup() } atf_test_case file_extend cleanup +file_extend_head() +{ + # Double the default timeout to make it pass on emulated architectures + # on ci.freebsd.org + atf_set "timeout" 600 +} file_extend_body() { local i start |
