http://git.savannah.gnu.org/cgit/rcs.git/patch/?id=8883c4f5a29be18e9ea09bd27a7b660830de45bb From 8883c4f5a29be18e9ea09bd27a7b660830de45bb Mon Sep 17 00:00:00 2001 From: Thien-Thi Nguyen Date: Fri, 23 Oct 2020 09:23:49 -0400 Subject: [v] Don't test signal handling if stdin not ok. * tests/t632: If stdin is not open and connected to a tty, skip the signal handling portion of the test. --- tests/ChangeLog | 9 +++++++++ tests/t632 | 9 +++++++++ 2 files changed, 18 insertions(+) diff --git a/tests/ChangeLog b/tests/ChangeLog index c3715c0..0565058 100644 --- a/tests/ChangeLog +++ b/tests/ChangeLog @@ -1,3 +1,12 @@ +2020-10-23 Thien-Thi Nguyen + + [v] Don't test signal handling if stdin not ok. + + + + * t632: If stdin is not open and connected to + a tty, skip the signal handling portion of the test. + 2020-10-20 Thien-Thi Nguyen Release: 5.10.0 diff --git a/tests/t632 b/tests/t632 index df6acc9..677ec8c 100644 --- a/tests/t632 +++ b/tests/t632 @@ -40,6 +40,15 @@ echo | co -l -I $w \ # (This is skipped if GNU coreutils timeout(1) is not available.) ## +# +# The timeout test needs co(1) to block on input. +# If stdin is not open and connected to a tty, skip out. +if test -t 0 ; then + echo STDIN OK +else + exit 0 +fi + # TODO: Don't be lame! Pick one: # (a) Mimic timeout(1) w/ sh commands. # (b) Incorporate heart of timeout(1) into ./btdt and use that. -- cgit v1.2.1 .scm'>
AgeCommit message (Expand)Author
2023-12-11gnu: cross-toolchain: Add set-cross-path for AVR....* gnu/build/cross-toolchain.scm (set-cross-path/avr): New procedure. (cross-gcc-build-phases) [string-prefix? "avr"]: Return set-cross-path/avr procedure. Signed-off-by: Jean-Pierre De Jesus DIAZ <me@jeandudey.tech> Change-Id: I00bd39236ac2e31fef02164a7fffc8b56a166f0d Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Jean-Pierre De Jesus DIAZ
2023-12-11gnu: cross-gcc: Enable multilib for AVR....* gnu/build/cross-toolchain.scm (patch-multilib-shebang): New procedure. * gnu/packages/avr.scm (make-avr-gcc): Remove uneeded phases and flags for multilib. * gnu/packages/cross-base (cross-gcc-arguments) <#:configure-flags> [target-avr?]: Remove --disable-multilib and add --enable-multilib. Change-Id: Id68d803057ac898f0a670f10487b08bf0891ab0b Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Jean-Pierre De Jesus DIAZ