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

tridge at samba.org tridge at samba.org
Sat Oct 28 05:21:11 GMT 2006


Author: tridge
Date: 2006-10-28 05:21:11 +0000 (Sat, 28 Oct 2006)
New Revision: 19503

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

Log:

it only makes sense to run the LOCAL-ICONV test on 'known good'
platforms as it tests the system iconv with the built in iconv. Limit
the test to Linux to avoid spurious errors.

Modified:
   branches/SAMBA_4_0/source/script/tests/test_local.sh


Changeset:
Modified: branches/SAMBA_4_0/source/script/tests/test_local.sh
===================================================================
--- branches/SAMBA_4_0/source/script/tests/test_local.sh	2006-10-28 04:17:43 UTC (rev 19502)
+++ branches/SAMBA_4_0/source/script/tests/test_local.sh	2006-10-28 05:21:11 UTC (rev 19503)
@@ -5,11 +5,17 @@
 local_tests="$local_tests LOCAL-SOCKET LOCAL-MESSAGING LOCAL-IRPC"
 local_tests="$local_tests LOCAL-NDR LOCAL-BINDING LOCAL-FILE LOCAL-REGISTRY"
 local_tests="$local_tests LOCAL-SDDL LOCAL-PAC LOCAL-DBSPEED"
-local_tests="$local_tests LOCAL-NTLMSSP LOCAL-CRYPTO-MD4 LOCAL-ICONV"
+local_tests="$local_tests LOCAL-NTLMSSP LOCAL-CRYPTO-MD4"
 local_tests="$local_tests LOCAL-CRYPTO-MD5 LOCAL-CRYPTO-HMACMD5"
 local_tests="$local_tests LOCAL-CRYPTO-SHA1 LOCAL-CRYPTO-HMACSHA1"
 local_tests="$local_tests LOCAL-RESOLVE LOCAL-TORTURE"
 
+if [ `uname` = "Linux" ]; then
+    # testing against the system iconv only makes sense for our 'reference' iconv
+    # behaviour
+    local_tests="$local_tests LOCAL-ICONV"
+fi
+
 if [ $# -lt 0 ]; then
 cat <<EOF
 Usage: test_local.sh



More information about the samba-cvs mailing list