svn commit: samba r7919 - in branches/SAMBA_4_0/source/script/tests: .

tridge at samba.org tridge at samba.org
Sun Jun 26 03:39:48 GMT 2005


Author: tridge
Date: 2005-06-26 03:39:48 +0000 (Sun, 26 Jun 2005)
New Revision: 7919

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=7919

Log:
use more portable shell syntax for MALLOC_CHECK_





Modified:
   branches/SAMBA_4_0/source/script/tests/test_functions.sh
   branches/SAMBA_4_0/source/script/tests/test_local.sh
   branches/SAMBA_4_0/source/script/tests/test_posix.sh
   branches/SAMBA_4_0/source/script/tests/test_rpc.sh
   branches/SAMBA_4_0/source/script/tests/test_w2k3.sh


Changeset:
Modified: branches/SAMBA_4_0/source/script/tests/test_functions.sh
===================================================================
--- branches/SAMBA_4_0/source/script/tests/test_functions.sh	2005-06-26 03:29:26 UTC (rev 7918)
+++ branches/SAMBA_4_0/source/script/tests/test_functions.sh	2005-06-26 03:39:48 UTC (rev 7919)
@@ -164,3 +164,9 @@
 	fi
 	exit $failed
 }
+
+if [ -z "$VALGRIND" ]; then
+    MALLOC_CHECK_=2
+    export MALLOC_CHECK_
+fi
+

Modified: branches/SAMBA_4_0/source/script/tests/test_local.sh
===================================================================
--- branches/SAMBA_4_0/source/script/tests/test_local.sh	2005-06-26 03:29:26 UTC (rev 7918)
+++ branches/SAMBA_4_0/source/script/tests/test_local.sh	2005-06-26 03:39:48 UTC (rev 7919)
@@ -9,10 +9,6 @@
 exit 1;
 fi
 
-if [ -z "$VALGRIND" ]; then
-    export MALLOC_CHECK_=2
-fi
-
 incdir=`dirname $0`
 . $incdir/test_functions.sh
 

Modified: branches/SAMBA_4_0/source/script/tests/test_posix.sh
===================================================================
--- branches/SAMBA_4_0/source/script/tests/test_posix.sh	2005-06-26 03:29:26 UTC (rev 7918)
+++ branches/SAMBA_4_0/source/script/tests/test_posix.sh	2005-06-26 03:39:48 UTC (rev 7919)
@@ -10,10 +10,6 @@
 exit 1;
 fi
 
-if [ -z "$VALGRIND" ]; then
-    export MALLOC_CHECK_=2
-fi
-
 unc="$1"
 username="$2"
 password="$3"

Modified: branches/SAMBA_4_0/source/script/tests/test_rpc.sh
===================================================================
--- branches/SAMBA_4_0/source/script/tests/test_rpc.sh	2005-06-26 03:29:26 UTC (rev 7918)
+++ branches/SAMBA_4_0/source/script/tests/test_rpc.sh	2005-06-26 03:39:48 UTC (rev 7919)
@@ -16,10 +16,6 @@
 exit 1;
 fi
 
-if [ -z "$VALGRIND" ]; then
-    export MALLOC_CHECK_=2
-fi
-
 server="$1"
 username="$2"
 password="$3"

Modified: branches/SAMBA_4_0/source/script/tests/test_w2k3.sh
===================================================================
--- branches/SAMBA_4_0/source/script/tests/test_w2k3.sh	2005-06-26 03:29:26 UTC (rev 7918)
+++ branches/SAMBA_4_0/source/script/tests/test_w2k3.sh	2005-06-26 03:39:48 UTC (rev 7919)
@@ -14,10 +14,6 @@
 exit 1;
 fi
 
-if [ -z "$VALGRIND" ]; then
-    export MALLOC_CHECK_=2
-fi
-
 server="$1"
 username="$2"
 password="$3"



More information about the samba-cvs mailing list