Ignore:
Timestamp:
Nov 24, 2016, 1:14:11 PM (9 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: update vendor to version 4.4.3

Location:
vendor/current/testsuite
Files:
6 deleted
6 edited

Legend:

Unmodified
Added
Removed
  • vendor/current/testsuite/README

    r414 r988  
    44The Samba testsuite is divided up into the following subdirectories.
    55
    6     - config          Configuration for DejaGnu program
    76    - lib             Various library files used by tool directories
    87   
    98    - nsswitch        Tests for nsswitch extensions
    10     - server          Miscellaneous server tests
    11     - rpc_client      Tests for the RPC client library code
    12     - rpcclient       Tests for the rpcclient program
    139
    1410    - build_farm      Tests designed to run automatically on the build farm
  • vendor/current/testsuite/build_farm/runlist

    r414 r988  
    1010torture-UNLINK torture-BROWSE torture-ATTR \
    1111torture-TRANS2 torture-TORTURE torture-OPLOCK1 \
    12 torture-OPLOCK3 torture-DIR torture-DIR1 torture-DENY1 \
     12torture-DIR torture-DIR1 torture-DENY1 \
    1313torture-DENY2 torture-TCON torture-TCON2 torture-TCONDEV \
    1414torture-RW1 torture-RW2 torture-OPEN torture-XCOPY \
  • vendor/current/testsuite/headers/wscript_build

    r740 r988  
    99    hlist = task.env.public_headers_list[:]
    1010    hlist.sort()
     11
    1112    for h in hlist:
    1213        f.write('#include "%s"\n' % os.path.normpath(h))
     
    2425                    target='test_headers.h')
    2526
    26 cflags=''
    27 for lib in ['talloc', 'tevent', 'tdb', 'ldb', 'popt' ]:
    28     ename = 'CPPPATH_%s' % lib.upper()
    29     for p in bld.env[ename]:
    30         cflags += bld.env.CPPPATH_ST % p + ' '
    31 
    32 if not bld.env.USING_SYSTEM_POPT:
    33     cflags += bld.env.CPPPATH_ST % '../lib/popt'
    34 
    3527if bld.env.DEVELOPER_MODE:
    3628    bld.SAMBA_BINARY('test_headers',
     
    3830                     includes="#include/public",
    3931                     pyembed=True,
    40                      cflags=cflags,
    4132                     local_include=True,
    4233                     global_include=False,
    4334                     use_global_deps=False,
    44                      install=False)
     35                     install=False,
     36                     deps='talloc tdb ldb tevent popt')
  • vendor/current/testsuite/nsswitch/getgrent_r.c

    r414 r988  
    3333       
    3434    while((gr = getgrent()) != NULL) {
    35         fprintf(fptr,"%s:%s:%d:%d\n", gr->gr_name, gr->gr_passwd,
     35        fprintf(fptr,"%s:%s:%d\n", gr->gr_name, gr->gr_passwd,
    3636                gr->gr_gid);
    3737    }
  • vendor/current/testsuite/smbd/sec_ctx1.c

    r414 r988  
    2727        /* Become a non-root user */
    2828
    29         setuid(1);
    30         setgid(1);
     29        samba_setuid(1);
     30        samba_setgid(1);
    3131
    3232        /* Try to push a security context.  This should fail with a
  • vendor/current/testsuite/smbd/sec_ctx_nonroot.c

    r414 r988  
    2828        /* Become a non-root user */
    2929
    30         setuid(1);
    31         setgid(1);
     30        samba_setuid(1);
     31        samba_setgid(1);
    3232
    3333        /* Try to push a security context.  This should fail with a
Note: See TracChangeset for help on using the changeset viewer.