[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <020ca58ad59035488d6a50b14113ed7401e797f4.1688134400.git.falcon@tinylab.org>
Date: Fri, 30 Jun 2023 22:58:02 +0800
From: Zhangjin Wu <falcon@...ylab.org>
To: thomas@...ch.de, w@....eu
Cc: arnd@...db.de, falcon@...ylab.org, linux-kernel@...r.kernel.org,
linux-kselftest@...r.kernel.org,
Thomas Weißschuh <linux@...ssschuh.net>
Subject: [PATCH v3 12/14] selftests/nolibc: prepare /tmp for tmpfs or ramfs
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@...ssschuh.net>
Signed-off-by: Zhangjin Wu <falcon@...ylab.org>
---
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 b7ea95dad0fb..906b70ddec79 100644
--- a/tools/testing/selftests/nolibc/nolibc-test.c
+++ b/tools/testing/selftests/nolibc/nolibc-test.c
@@ -1053,6 +1053,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
Powered by blists - more mailing lists