diff options
author | Dmitry V. Levin <ldv@altlinux.org> | 2012-09-24 20:52:13 +0000 |
---|---|---|
committer | Dmitry V. Levin <ldv@altlinux.org> | 2012-09-25 02:48:31 +0000 |
commit | 57c69bef13298a3fbcedebf4c5fcecc690b75efb (patch) | |
tree | 9cc9d909afcb9e8b6c23697bdb48901e80d7addb /posix | |
parent | 9a9028b1fe1519262fcbf0b7ede708d4ebbffbd7 (diff) | |
download | glibc-57c69bef13298a3fbcedebf4c5fcecc690b75efb.tar glibc-57c69bef13298a3fbcedebf4c5fcecc690b75efb.tar.gz glibc-57c69bef13298a3fbcedebf4c5fcecc690b75efb.tar.bz2 glibc-57c69bef13298a3fbcedebf4c5fcecc690b75efb.zip |
Set "fail on error" mode directly in testsuite shell scripts
Diffstat (limited to 'posix')
-rw-r--r-- | posix/Makefile | 8 | ||||
-rwxr-xr-x | posix/globtest.sh | 4 | ||||
-rw-r--r-- | posix/tst-getconf.sh | 4 | ||||
-rwxr-xr-x | posix/wordexp-tst.sh | 4 |
4 files changed, 13 insertions, 7 deletions
diff --git a/posix/Makefile b/posix/Makefile index 3560bb2c30..a4741849e5 100644 --- a/posix/Makefile +++ b/posix/Makefile @@ -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 diff --git a/posix/globtest.sh b/posix/globtest.sh index 73f198db2f..286b1b4912 100755 --- a/posix/globtest.sh +++ b/posix/globtest.sh @@ -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 diff --git a/posix/tst-getconf.sh b/posix/tst-getconf.sh index 499cd071bd..030926a74f 100644 --- a/posix/tst-getconf.sh +++ b/posix/tst-getconf.sh @@ -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 diff --git a/posix/wordexp-tst.sh b/posix/wordexp-tst.sh index 53183e561d..fec529265b 100755 --- a/posix/wordexp-tst.sh +++ b/posix/wordexp-tst.sh @@ -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. |