aboutsummaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
Diffstat (limited to 'src/test')
-rw-r--r--src/test/test_dir.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/test/test_dir.c b/src/test/test_dir.c
index 5ed56696a3..e31917056e 100644
--- a/src/test/test_dir.c
+++ b/src/test/test_dir.c
@@ -4164,12 +4164,14 @@ download_status_random_backoff_helper(int min_delay, int max_delay)
}
/* Advance */
- current_time += increment;
++(dls_random.n_download_attempts);
++(dls_random.n_download_failures);
/* Try another maybe */
old_increment = increment;
+ if (increment >= max_delay)
+ current_time += increment;
+
} while (increment < max_delay);
done: