We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10e714b commit 28325fbCopy full SHA for 28325fb
tests/unittests/tests-spiffs/tests-spiffs.c
@@ -223,11 +223,11 @@ static void tests_spiffs_write2(void)
223
TEST_ASSERT(mp >= 0);
224
225
int res;
226
- for (int j = 0; j < 10; j++) {
+ for (int j = 0; j < 5; j++) {
227
int fd = vfs_open("/test-spiffs/test.txt", O_CREAT | O_RDWR, 0);
228
TEST_ASSERT(fd >= 0);
229
230
- for (int i = 0; i < 2000; i++) {
+ for (int i = 0; i < 128; i++) {
231
res = vfs_write(fd, buf, sizeof(buf));
232
TEST_ASSERT_EQUAL_INT(sizeof(buf), res);
233
}
0 commit comments