mirror of
https://sourceware.org/git/glibc.git
synced 2025-12-24 17:51:17 +03:00
Set "fail on error" mode directly in testsuite shell scripts
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
# Copyright (C) 1991-2007,2009,2010,2011,2012 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1991-2012 Free Software Foundation, Inc.
|
||||
# This file is part of the GNU C Library.
|
||||
|
||||
# The GNU C Library is free software; you can redistribute it and/or
|
||||
@@ -117,10 +117,10 @@ ifeq (no,$(cross-compiling))
|
||||
ifeq (yes,$(build-shared))
|
||||
tests: $(objpfx)globtest.out $(objpfx)wordexp-tst.out
|
||||
$(objpfx)globtest.out: globtest.sh $(objpfx)globtest
|
||||
$(SHELL) -e globtest.sh $(common-objpfx) $(elf-objpfx) \
|
||||
$(SHELL) $< $(common-objpfx) $(elf-objpfx) \
|
||||
$(rtld-installed-name)
|
||||
$(objpfx)wordexp-tst.out: wordexp-tst.sh $(objpfx)wordexp-test
|
||||
$(SHELL) -e wordexp-tst.sh $(common-objpfx) $(elf-objpfx) \
|
||||
$(SHELL) $< $(common-objpfx) $(elf-objpfx) \
|
||||
$(rtld-installed-name)
|
||||
endif
|
||||
endif
|
||||
@@ -276,7 +276,7 @@ $(objpfx)tst-boost-mem: $(objpfx)tst-boost.out
|
||||
$(common-objpfx)malloc/mtrace $(objpfx)tst-boost.mtrace > $@
|
||||
|
||||
$(objpfx)tst-getconf.out: tst-getconf.sh $(objpfx)getconf
|
||||
$(SHELL) -e $< $(common-objpfx) $(elf-objpfx) $(rtld-installed-name)
|
||||
$(SHELL) $< $(common-objpfx) $(elf-objpfx) $(rtld-installed-name)
|
||||
|
||||
ifeq (yes,$(build-shared))
|
||||
$(objpfx)tst-regex: $(common-objpfx)rt/librt.so
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#! /bin/bash
|
||||
# Test for glob(3).
|
||||
# Copyright (C) 1997-2011 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1997-2012 Free Software Foundation, Inc.
|
||||
# This file is part of the GNU C Library.
|
||||
|
||||
# The GNU C Library is free software; you can redistribute it and/or
|
||||
@@ -17,6 +17,8 @@
|
||||
# License along with the GNU C Library; if not, see
|
||||
# <http://www.gnu.org/licenses/>.
|
||||
|
||||
set -e
|
||||
|
||||
common_objpfx=$1; shift
|
||||
elf_objpfx=$1; shift
|
||||
rtld_installed_name=$1; shift
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#! /bin/sh
|
||||
# Test for getconf(1).
|
||||
# Copyright (C) 2001-2002 Free Software Foundation, Inc.
|
||||
# Copyright (C) 2001-2012 Free Software Foundation, Inc.
|
||||
# This file is part of the GNU C Library.
|
||||
|
||||
# The GNU C Library is free software; you can redistribute it and/or
|
||||
@@ -17,6 +17,8 @@
|
||||
# License along with the GNU C Library; if not, see
|
||||
# <http://www.gnu.org/licenses/>.
|
||||
|
||||
set -e
|
||||
|
||||
common_objpfx=$1; shift
|
||||
elf_objpfx=$1; shift
|
||||
if [ $# -eq 0 ]; then
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#! /bin/sh
|
||||
# Test for wordexp(3).
|
||||
# Copyright (C) 1998-2000 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1998-2012 Free Software Foundation, Inc.
|
||||
# This file is part of the GNU C Library.
|
||||
|
||||
# The GNU C Library is free software; you can redistribute it and/or
|
||||
@@ -17,6 +17,8 @@
|
||||
# License along with the GNU C Library; if not, see
|
||||
# <http://www.gnu.org/licenses/>.
|
||||
|
||||
set -e
|
||||
|
||||
# Some of these tests may look a little weird.
|
||||
# The first parameter to wordexp-test is what it gives to wordexp.
|
||||
# The others are just there to be parameters.
|
||||
|
||||
Reference in New Issue
Block a user