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/Makefile | |
parent | 9a9028b1fe1519262fcbf0b7ede708d4ebbffbd7 (diff) | |
download | glibc-57c69bef13298a3fbcedebf4c5fcecc690b75efb.zip glibc-57c69bef13298a3fbcedebf4c5fcecc690b75efb.tar.gz glibc-57c69bef13298a3fbcedebf4c5fcecc690b75efb.tar.bz2 |
Set "fail on error" mode directly in testsuite shell scripts
Diffstat (limited to 'posix/Makefile')
-rw-r--r-- | posix/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/posix/Makefile b/posix/Makefile index 3560bb2..a474184 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 |