From b4806a4300b2ef8dc945663af48242ab50041d44 Mon Sep 17 00:00:00 2001 From: Alexandre Oliva Date: Mon, 8 Mar 1999 21:08:09 +0000 Subject: [PATCH] * tests/build-relink.test: when hell is expected to fail, run it within a subshell and redirect stderr to stdout, so that dynamic linker errors are only printed in verbose mode --- ChangeLog | 4 ++++ tests/build-relink.test | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 4a9834862..693dfa830 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 1999-03-08 Alexandre Oliva + * tests/build-relink.test: when hell is expected to fail, run it + within a subshell and redirect stderr to stdout, so that dynamic + linker errors are only printed in verbose mode + * ltmain.in (hardcode_libdir_separator, compile_rpath, finalize_rpath): only substitute hardcode_libdir_flag_spec if hardcode_libdirs is non-empty diff --git a/tests/build-relink.test b/tests/build-relink.test index 84cfab7aa..9fb506e04 100755 --- a/tests/build-relink.test +++ b/tests/build-relink.test @@ -70,7 +70,7 @@ fi rm -f libhello.la echo "running ../demo/hell with broken libhello.la" -if ./hell; then +if (./hell) 2>&1; then echo "= Exiting: ../demo/hell runs even though libhello.la is incomplete" echo "shlibpath_overrides_runpath should be set to no" exit 1 -- 2.47.3