Skip to content

Commit 0973db1

Browse files
fixup! tests/pkg/flashdb_vfs: improve test output and increase stacksize
1 parent 507c498 commit 0973db1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/pkg/flashdb_vfs/main.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ int main(void)
108108
fdb_kvdb_control(&kvdb, FDB_KVDB_CTRL_SET_FILE_MODE, &file_mode);
109109
/* create database directory */
110110
int res = vfs_mkdir(KVDB_DIR, 0777);
111-
printf("mkdir '%s' %s", KVDB_DIR, resstr(res == 0 || res == -EEXIST));
111+
printf("mkdir '%s' %s\n", KVDB_DIR, resstr(res == 0 || res == -EEXIST));
112112
if (!(res == 0 || res == -EEXIST)) {
113113
return -1;
114114
}
@@ -166,7 +166,7 @@ int main(void)
166166
fdb_tsdb_control(&tsdb, FDB_TSDB_CTRL_SET_FILE_MODE, &file_mode);
167167
/* create database directory */
168168
int res = vfs_mkdir(TSDB_DIR, 0777);
169-
printf("mkdir '%s' %s", TSDB_DIR, resstr(res == 0 || res == -EEXIST));
169+
printf("mkdir '%s' %s\n", TSDB_DIR, resstr(res == 0 || res == -EEXIST));
170170
#endif
171171
/* Time series database initialization
172172
*

0 commit comments

Comments
 (0)