The branch, master has been updated
       via  73a9e6a selftest: Print error message when smbd does not have ADS 
support
      from  f908e6b nsswitch: Add OPT_KRB5CCNAME to avoid an error message.

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit 73a9e6a73b3508fd689a18c72d0f5574f2fecf91
Author: Christof Schmitt <[email protected]>
Date:   Wed Jul 3 12:49:43 2013 -0700

    selftest: Print error message when smbd does not have ADS support
    
    When smbd cannot be compiled with ADS support, setting up the s3member
    environment fails with:
    
    samba: using 'standard' process model
    Samba can't provide environment 's3member' at 
/test/samba/selftest/target/Samba.pm line 44.
    Can't use string ("UNKNOWN") as a HASH ref while "strict refs" in use at 
/test/samba/selftest/selftest.pl line 852.
    samba: EOF on stdin - terminating
    
    Add an explicit error message for the missing ADS support to make this
    easier to debug and also avoid the warning about the hash reference:
    
    samba: using 'standard' process model
    Samba can't provide environment 's3member' at 
/test/samba/selftest/target/Samba.pm line 44.
    Unable to setup environment s3member at /test/samba/selftest/selftest.pl 
line 851.
    smbd does not have ADS support
    samba: EOF on stdin - terminating
    
    Signed-off-by: Christof Schmitt <[email protected]>
    Reviewed-by: Andreas Schneider <[email protected]>
    Reviewed-by: Andrew Bartlett <[email protected]>
    
    Autobuild-User(master): Andrew Bartlett <[email protected]>
    Autobuild-Date(master): Sat Jul 27 08:31:14 CEST 2013 on sn-devel-104

-----------------------------------------------------------------------

Summary of changes:
 selftest/selftest.pl      |    4 +++-
 selftest/target/Samba3.pm |    1 +
 2 files changed, 4 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/selftest/selftest.pl b/selftest/selftest.pl
index cc947a1..b60b762 100755
--- a/selftest/selftest.pl
+++ b/selftest/selftest.pl
@@ -847,7 +847,9 @@ if ($opt_testenv) {
 
        my $testenv_vars = setup_env($testenv_name, $prefix);
 
-       die("Unable to setup environment $testenv_name") unless ($testenv_vars);
+       if (not $testenv_vars or $testenv_vars eq "UNKNOWN") {
+               die("Unable to setup environment $testenv_name");
+       }
 
        $ENV{PIDDIR} = $testenv_vars->{PIDDIR};
        $ENV{ENVNAME} = $testenv_name;
diff --git a/selftest/target/Samba3.pm b/selftest/target/Samba3.pm
index 26f5e92..20587bf 100755
--- a/selftest/target/Samba3.pm
+++ b/selftest/target/Samba3.pm
@@ -25,6 +25,7 @@ sub have_ads($) {
        close IN;
 
        # If we were not built with ADS support, pretend we were never even 
available
+       print "smbd does not have ADS support\n" unless $found_ads;
        return $found_ads;
 }
 


-- 
Samba Shared Repository

Reply via email to