GNU bug report logs - #68119
[GNU automake 1.16.5] test-suite 45 tests failed

Previous Next

Package: automake;

Reported by: Erik A Johnson <JohnsonE <at> usc.edu>

Date: Sat, 30 Dec 2023 01:12:03 UTC

Severity: normal

Merged with 68186, 68190

Done: Karl Berry <karl <at> freefriends.org>

Bug is archived. No further changes may be made.

Full log


Message #45 received at 68119 <at> debbugs.gnu.org (full text, mbox):

From: Erik A Johnson <JohnsonE <at> usc.edu>
To: Karl Berry <karl <at> freefriends.org>
Cc: "68119 <at> debbugs.gnu.org" <68119 <at> debbugs.gnu.org>
Subject: Re: bug#68119: [GNU automake 1.16.5] test-suite 45 tests failed
Date: Mon, 29 Jan 2024 08:34:48 +0000
Success (well nearly), Karl!


1. Both "touch ..." and installing texinfo got compiling to go through.


2. Only one test failed now: line 46 of t/py-compile-basedir.sh is:

	case $(echo "$files" | wc -l) in 4|6) ;; *) false;; esac

but needs to be one of the following

	case $(echo "$files" | wc -l | sed 's/^ *//') in 4|6) ;; *) false;; esac
	case $(echo "$files" | wc -l | awk '{print $1}') in 4|6) ;; *) false;; esac
	linecount=$(echo "$files" | wc -l); case $(echo $linecount) in 4|6) ;; *) false;; esac

because "wc -l" prints some spaces in front of the number (at least on macOS).


Erik


P.S. "python" points to python2 by default on macOS Sonoma; the tests run using python2 but I will use
	export PYTHON=python3
to verify that it works with python 3.xx.

P.P.S. It still needs
	export am_cv_sleep_fractional_seconds=false
to correctly run the tests on macOS.  Without that, 75-90 tests fail.







This bug report was last modified 1 year and 106 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.