[SCM] Samba Shared Repository - branch master updated

Amitay Isaacs amitay at samba.org
Thu Feb 2 23:01:02 MST 2012


The branch, master has been updated
       via  db869c5 selftest: Fix the exit code of make test when run in buildfarm
      from  571ee0b Only ask for specific permissions required when setting an ACL.

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


- Log -----------------------------------------------------------------
commit db869c5812053f7b71ab92e88e52bed148cad01b
Author: Amitay Isaacs <amitay at gmail.com>
Date:   Fri Feb 3 12:04:32 2012 +1100

    selftest: Fix the exit code of make test when run in buildfarm
    
    When make test is run in buildfarm environment (RUN_FROM_BUILD_FARM=1),
    last process in make test pipeline is subunit-filter. This subunit-filter
    is responsible for converting failure test result to xfail for known
    failures. While converting failures to xfail, it sets exitcode=1. If
    this is the last process in the pipeline make test fails, which is
    the observed behavior in buildfarm.
    
    In autobuild, there is additional process in the pipeline format-subunit
    which processes the output of subunit-filter and correctly terminates
    with exit code=0. The buildfarm make test failure is fixed by adding
    extra filter-subunit in the pipeline, as the extra filter-subunit
    exits correctly with exit code=0.
    
    Autobuild-User: Amitay Isaacs <amitay at samba.org>
    Autobuild-Date: Fri Feb  3 07:00:04 CET 2012 on sn-devel-104

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

Summary of changes:
 selftest/wscript |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)


Changeset truncated at 500 lines:

diff --git a/selftest/wscript b/selftest/wscript
index 4bd4e66..1bfa9f3 100644
--- a/selftest/wscript
+++ b/selftest/wscript
@@ -183,6 +183,8 @@ def cmd_testonly(opt):
         if (os.environ.get('RUN_FROM_BUILD_FARM') is None and
             not Options.options.FILTERED_SUBUNIT):
             cmd += ' | tee ${SELFTEST_PREFIX}/subunit | ${FORMAT_TEST_OUTPUT}'
+        else:
+            cmd += ' | ${FILTER_OPTIONS}'
     runcmd = EXPAND_VARIABLES(opt, cmd)
 
     print("test: running %s" % runcmd)


-- 
Samba Shared Repository


More information about the samba-cvs mailing list