[PATCH 3/3] [MTD-UTILS] fs-tests: allow for symlink name too long in integrity test
Adrian Hunter
ext-adrian.hunter at nokia.com
Tue Aug 12 07:08:14 EDT 2008
Signed-off-by: Adrian Hunter <ext-adrian.hunter at nokia.com>
---
tests/fs-tests/integrity/integck.c | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/tests/fs-tests/integrity/integck.c b/tests/fs-tests/integrity/integck.c
index 8cdbfb4..145557f 100644
--- a/tests/fs-tests/integrity/integck.c
+++ b/tests/fs-tests/integrity/integck.c
@@ -1664,8 +1664,9 @@ static void symlink_new(struct dir_info *dir, const char *name_)
path = dir_path(dir, name);
target = pick_symlink_target(path);
if (symlink(target, path) == -1) {
- CHECK(errno == ENOSPC);
- full = 1;
+ CHECK(errno == ENOSPC || errno == ENAMETOOLONG);
+ if (errno == ENOSPC)
+ full = 1;
free(target);
free(path);
free(name);
--
1.5.4.3
More information about the linux-mtd
mailing list