From 71e18cc40c6a275e01c166ffeb68c5ed8759caf0 Mon Sep 17 00:00:00 2001 From: Adrian Hunter Date: Tue, 12 Aug 2008 14:08:14 +0300 Subject: fs-tests: allow for symlink name too long in integrity test Signed-off-by: Adrian Hunter Signed-off-by: Artem Bityutskiy --- tests/fs-tests/integrity/integck.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'tests') 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); -- cgit v1.2.3