From 1e56f93b01c65b84e920d068b88bfc94204ea055 Mon Sep 17 00:00:00 2001 From: Michael Sweet Date: Wed, 11 May 2016 10:34:08 -0400 Subject: [PATCH] Add quotes around DYLD_INSERT_LIBRARIES value. --- test/run-stp-tests.sh | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/test/run-stp-tests.sh b/test/run-stp-tests.sh index 475894d4f..1e9b5147e 100755 --- a/test/run-stp-tests.sh +++ b/test/run-stp-tests.sh @@ -3,7 +3,7 @@ # Perform the complete set of IPP compliance tests specified in the # CUPS Software Test Plan. # -# Copyright 2007-2015 by Apple Inc. +# Copyright 2007-2016 by Apple Inc. # Copyright 1997-2007 by Easy Software Products, all rights reserved. # # These coded instructions, statements, and computer programs are the @@ -490,8 +490,11 @@ StrictConformance Yes Browsing Off Listen localhost:$port Listen $BASE/sock +PassEnv DYLD_LIBRARY_PATH +PassEnv LD_LIBRARY_PATH +PassEnv LD_PRELOAD PassEnv LOCALEDIR -PassEnv DYLD_INSERT_LIBRARIES +PassEnv SHLIB_PATH MaxSubscriptions 3 MaxLogSize 0 AccessLogLevel actions @@ -649,7 +652,7 @@ echo " $VALGRIND ../scheduler/cupsd -c $BASE/cupsd.conf -f >$BASE/log/debug_l echo "" if test `uname` = Darwin -a "x$VALGRIND" = x; then - DYLD_INSERT_LIBRARIES=/usr/lib/libgmalloc.dylib MallocStackLogging=1 ../scheduler/cupsd -c $BASE/cupsd.conf -f >$BASE/log/debug_log 2>&1 & + DYLD_INSERT_LIBRARIES="/usr/lib/libgmalloc.dylib" MallocStackLogging=1 ../scheduler/cupsd -c $BASE/cupsd.conf -f >$BASE/log/debug_log 2>&1 & else $VALGRIND ../scheduler/cupsd -c $BASE/cupsd.conf -f >$BASE/log/debug_log 2>&1 & fi -- 2.39.5