summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2002-01-20 22:06:35 +0000
committerAndrew Bartlett <abartlet@samba.org>2002-01-20 22:06:35 +0000
commit409fb69ecbf1849b5c92ea018eaed126a4f8a24d (patch)
tree55980118a108ea7045c6ad067a509ce4110811f0
parent7f7a53e8489f97ced28936252eca322c09b01d61 (diff)
downloadsamba-409fb69ecbf1849b5c92ea018eaed126a4f8a24d.tar.gz
samba-409fb69ecbf1849b5c92ea018eaed126a4f8a24d.tar.xz
samba-409fb69ecbf1849b5c92ea018eaed126a4f8a24d.zip
A couple more little fixes for the domain security tests.
-rw-r--r--testsuite/build_farm/basicsmb-domainsec-nt4.test4
-rw-r--r--testsuite/build_farm/basicsmb-domainsec.test6
2 files changed, 5 insertions, 5 deletions
diff --git a/testsuite/build_farm/basicsmb-domainsec-nt4.test b/testsuite/build_farm/basicsmb-domainsec-nt4.test
index 96fac42ab2f..62d4fb28755 100644
--- a/testsuite/build_farm/basicsmb-domainsec-nt4.test
+++ b/testsuite/build_farm/basicsmb-domainsec-nt4.test
@@ -8,9 +8,9 @@ test_joindomain_nt4() {
$prefix/bin/net rpc join oldstyle -S localhost
status=$?
if [ $status = 0 ]; then
- echo "'net rpc join oldstyle' correctly joined the domain ($workgroup)"
+ echo "'net rpc join oldstyle' correctly joined the domain"
else
- echo "'net rpc join oldstyle' failed to join the domain ($workgroup)! (status $status)"
+ echo "'net rpc join oldstyle' failed to join the domain! (status $status)"
return 1
fi
return 0
diff --git a/testsuite/build_farm/basicsmb-domainsec.test b/testsuite/build_farm/basicsmb-domainsec.test
index 20a7001c746..eb0a5c81aa1 100644
--- a/testsuite/build_farm/basicsmb-domainsec.test
+++ b/testsuite/build_farm/basicsmb-domainsec.test
@@ -2,15 +2,15 @@
. basicsmb.fns
test_joindomain() {
- test_joindomain_password="$1"
+ test_join_domain_password="$1"
echo "$prefix/bin/net rpc join -S localhost -U $whoami%$test_join_domain_password"
$prefix/bin/net rpc join -S localhost -U $whoami%$test_join_domain_password
status=$?
if [ $status = 0 ]; then
- echo "'net rpc join' correctly joined the domain ($workgroup)"
+ echo "'net rpc join' correctly joined the domain"
else
- echo "'net rpc join' failed to join the domain ($workgroup)! (status $status)"
+ echo "'net rpc join' failed to join the domain! (status $status)"
return 1
fi
return 0