加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
test-skip-overlay-filesystem-because-of-no-inotify_add_watch.patch 1.49 KB
一键复制 编辑 原始数据 按行查看 历史
From 8dc094e77603c61a9b86b448c3128cf61ea66d8a Mon Sep 17 00:00:00 2001
From: jiangchuangang <jiangchuangang@huawei.com>
Date: Sat, 25 Nov 2023 09:11:43 +0800
Subject: [PATCH] test: skip overlay filesystem because of no inotify_add_watch
---
tests/tail/inotify-dir-recreate.sh | 5 +++++
tests/tail/inotify-rotate-resources.sh | 5 +++++
2 files changed, 10 insertions(+)
diff --git a/tests/tail/inotify-dir-recreate.sh b/tests/tail/inotify-dir-recreate.sh
index 469876b..2af2aed 100755
--- a/tests/tail/inotify-dir-recreate.sh
+++ b/tests/tail/inotify-dir-recreate.sh
@@ -21,6 +21,11 @@
. "${srcdir=.}/tests/init.sh"; path_prepend_ ./src
print_ver_ tail
+filesystem=$(df -T $(pwd) | awk 'NR==2 {print $2}')
+if [ x"$filesystem" == x"overlay" ]; then
+ skip_ 'overlay filesystem skipped, no inotify_add_watch'
+fi
+
grep '^#define HAVE_INOTIFY 1' "$CONFIG_HEADER" >/dev/null && is_local_dir_ . \
|| skip_ 'inotify is not supported'
diff --git a/tests/tail/inotify-rotate-resources.sh b/tests/tail/inotify-rotate-resources.sh
index 6fa65ff..838a9a1 100755
--- a/tests/tail/inotify-rotate-resources.sh
+++ b/tests/tail/inotify-rotate-resources.sh
@@ -22,6 +22,11 @@ print_ver_ tail
# Inotify not used on remote file systems
require_local_dir_
+filesystem=$(df -T $(pwd) | awk 'NR==2 {print $2}')
+if [ x"$filesystem" == x"overlay" ]; then
+ skip_ 'overlay filesystem skipped, no inotify_add_watch'
+fi
+
grep '^#define HAVE_INOTIFY 1' "$CONFIG_HEADER" >/dev/null \
|| skip_ 'inotify required'
--
2.36.1
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化