From 24795e6b74b3618ecb37742f98cff19a4344e88b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sosth=C3=A8ne=20Gu=C3=A9don?= Date: Mon, 13 Mar 2023 11:39:06 +0100 Subject: [PATCH] Add missing iterations in tests --- tests/test_dirs.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_dirs.toml b/tests/test_dirs.toml index 270f4f8e..6300f8c1 100644 --- a/tests/test_dirs.toml +++ b/tests/test_dirs.toml @@ -727,7 +727,7 @@ code = ''' } lfs_unmount(&lfs) => 0; - for (int j = 2; j < COUNT; j++) { + for (int j = 2; j < COUNT + 2; j++) { lfs_mount(&lfs, &cfg) => 0; lfs_dir_open(&lfs, &dir, "hello") => 0; lfs_dir_read(&lfs, &dir, &info) => 1; @@ -787,7 +787,7 @@ code = ''' } lfs_unmount(&lfs) => 0; - for (int j = 2; j < COUNT; j++) { + for (int j = 2; j < COUNT + 2; j++) { lfs_mount(&lfs, &cfg) => 0; lfs_dir_open(&lfs, &dir, "/") => 0; lfs_dir_read(&lfs, &dir, &info) => 1;