aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/fs-tests/integrity/integck.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/fs-tests/integrity/integck.c b/tests/fs-tests/integrity/integck.c
index 23ad9bc..62123d5 100644
--- a/tests/fs-tests/integrity/integck.c
+++ b/tests/fs-tests/integrity/integck.c
@@ -1252,7 +1252,7 @@ static void create_test_data(void)
do_an_operation();
free = tests_get_free_space();
total = tests_get_total_space();
- if ((free * 100) / total < 90)
+ if ((free * 100) / total >= 10)
break;
}
grow = 0;
@@ -1281,7 +1281,7 @@ static void update_test_data(void)
do_an_operation();
free = tests_get_free_space();
total = tests_get_total_space();
- if ((free * 100) / total < 50)
+ if ((free * 100) / total >= 50)
break;
}
grow = 0;