[PATCH v4 13/18] selftests/nolibc: prepare /tmp for tmpfs or ramfs

From: Zhangjin Wu
Date: Fri Jul 07 2023 - 14:39:21 EST


create a /tmp directory and mount tmpfs there, if tmpfs is not
mountable, use ramfs as tmpfs.

tmpfs will be used instead of procfs for some tests.

Reviewed-by: Thomas Weißschuh <linux@xxxxxxxxxxxxxx>
Signed-off-by: Zhangjin Wu <falcon@xxxxxxxxxxx>
---
tools/testing/selftests/nolibc/nolibc-test.c | 4 ++++
1 file changed, 4 insertions(+)

diff --git a/tools/testing/selftests/nolibc/nolibc-test.c b/tools/testing/selftests/nolibc/nolibc-test.c
index 5497ee86cf40..6b863f7b677c 100644
--- a/tools/testing/selftests/nolibc/nolibc-test.c
+++ b/tools/testing/selftests/nolibc/nolibc-test.c
@@ -1063,6 +1063,10 @@ int prepare(void)
}
}

+ /* try to mount /tmp if not mounted, if not mountable, use ramfs as tmpfs */
+ mkdir("/tmp", 0755);
+ mount("none", "/tmp", "tmpfs", 0, 0);
+
return 0;
}

--
2.25.1