From 9ac77d42d1c2f56018eb5bcb4e2265d78d572e8c Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Thu, 17 Jun 2021 19:19:13 +0200 Subject: contrib/maxlen.bash: also test dir and path length Move the script from tests to contrib as it may now be useful to somebody else. https://github.com/rfjakob/gocryptfs/issues/552 --- tests/maxlen.bash | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100755 tests/maxlen.bash (limited to 'tests/maxlen.bash') diff --git a/tests/maxlen.bash b/tests/maxlen.bash deleted file mode 100755 index fb133e0..0000000 --- a/tests/maxlen.bash +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/bash -eu -# -# Find out the maximum supported filename length and print it. -# -# Part of the gocryptfs test suite -# https://nuetzlich.net/gocryptfs/ - -NAME="maxlen." -LEN=0 - -while [ $LEN -le 10000 ]; do - touch $NAME 2> /dev/null || break - rm $NAME - LEN=${#NAME} - NAME="${NAME}x" -done - -echo $LEN -- cgit v1.2.3