ZTS: increase timeout of mmap_sync_001_pos

On load the test needs sometimes a bit more time then just one second.
Doubling the time will help on the QEMU based testings.

Reviewed by: Brian Behlendorf <behlendorf1@llnl.gov>
Reviewed-by: Tony Hutter <hutter2@llnl.gov>
Signed-off-by: Tino Reichardt <milky-zfs@mcmilk.de>
Closes #16537
This commit is contained in:
Tino Reichardt 2024-09-15 09:42:55 +02:00 committed by Tony Hutter
parent e29e7a0502
commit 36bac59fbc

View File

@ -64,7 +64,7 @@ main(int argc, char *argv[])
run_time_mins = atoi(argv[1]); run_time_mins = atoi(argv[1]);
} }
int max_msync_time_ms = 1000; int max_msync_time_ms = 2000;
if (argc >= 3) { if (argc >= 3) {
max_msync_time_ms = atoi(argv[2]); max_msync_time_ms = atoi(argv[2]);
} }