tests, maxlen.bash: speed up TestMaxlen using QUICK=1

From >6 to <1 second.
This commit is contained in:
Jakob Unterwurzacher 2021-06-26 19:12:52 +02:00
parent 446c3d7e93
commit ad3eeaedc5
2 changed files with 25 additions and 17 deletions

View File

@ -32,12 +32,16 @@ while true ; do
echo "error: file $PWD/$NEXT already exists"
exit 1
fi
touch $NEXT 2> /dev/null || break
echo -n 2> /dev/null > $NEXT || break
rm $NEXT
NAME="$NEXT"
done
echo "${#NAME}"
# Set to 0 if undefined
: ${QUICK:=0}
if [[ $QUICK -ne 1 ]]; then
echo -n " Maximum dirname length: "
# Add one character at a time until we hit an error
NAME=""
@ -49,8 +53,15 @@ while true ; do
done
MAX_DIRNAME=${#NAME}
echo "${#NAME}"
fi
for CHARS_PER_SUBDIR in 1 10 100 $MAX_DIRNAME ; do
if [[ $QUICK -eq 1 ]]; then
CHARS_TODO=100
else
CHARS_TODO="1 10 100 $MAX_DIRNAME"
fi
for CHARS_PER_SUBDIR in $CHARS_TODO ; do
echo -n " Maximum path length with $(printf %3d $CHARS_PER_SUBDIR) chars per subdir: "
if [[ $INTERACTIVE -eq 1 ]] ; then
echo -n " "

View File

@ -380,6 +380,7 @@ func TestMaxlen(t *testing.T) {
t.Fatal(err)
}
cmd := exec.Command("../../contrib/maxlen.bash", workDir)
cmd.Env = []string{"QUICK=1"}
out, err := cmd.CombinedOutput()
if err != nil {
t.Log(string(out))
@ -387,11 +388,7 @@ func TestMaxlen(t *testing.T) {
}
want := `
Maximum filename length: 255
Maximum dirname length: 255
Maximum path length with 1 chars per subdir: 4095
Maximum path length with 10 chars per subdir: 4095
Maximum path length with 100 chars per subdir: 4095
Maximum path length with 255 chars per subdir: 4095
`
if !strings.HasSuffix(string(out), want) {
t.Errorf("wrong output: %s", string(out))