Changeset 988 for vendor/current/testsuite
- Timestamp:
- Nov 24, 2016, 1:14:11 PM (9 years ago)
- Location:
- vendor/current/testsuite
- Files:
-
- 6 deleted
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/testsuite/README
r414 r988 4 4 The Samba testsuite is divided up into the following subdirectories. 5 5 6 - config Configuration for DejaGnu program7 6 - lib Various library files used by tool directories 8 7 9 8 - nsswitch Tests for nsswitch extensions 10 - server Miscellaneous server tests11 - rpc_client Tests for the RPC client library code12 - rpcclient Tests for the rpcclient program13 9 14 10 - build_farm Tests designed to run automatically on the build farm -
vendor/current/testsuite/build_farm/runlist
r414 r988 10 10 torture-UNLINK torture-BROWSE torture-ATTR \ 11 11 torture-TRANS2 torture-TORTURE torture-OPLOCK1 \ 12 torture- OPLOCK3 torture-DIR torture-DIR1 torture-DENY1 \12 torture-DIR torture-DIR1 torture-DENY1 \ 13 13 torture-DENY2 torture-TCON torture-TCON2 torture-TCONDEV \ 14 14 torture-RW1 torture-RW2 torture-OPEN torture-XCOPY \ -
vendor/current/testsuite/headers/wscript_build
r740 r988 9 9 hlist = task.env.public_headers_list[:] 10 10 hlist.sort() 11 11 12 for h in hlist: 12 13 f.write('#include "%s"\n' % os.path.normpath(h)) … … 24 25 target='test_headers.h') 25 26 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 35 27 if bld.env.DEVELOPER_MODE: 36 28 bld.SAMBA_BINARY('test_headers', … … 38 30 includes="#include/public", 39 31 pyembed=True, 40 cflags=cflags,41 32 local_include=True, 42 33 global_include=False, 43 34 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 33 33 34 34 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, 36 36 gr->gr_gid); 37 37 } -
vendor/current/testsuite/smbd/sec_ctx1.c
r414 r988 27 27 /* Become a non-root user */ 28 28 29 s etuid(1);30 s etgid(1);29 samba_setuid(1); 30 samba_setgid(1); 31 31 32 32 /* Try to push a security context. This should fail with a -
vendor/current/testsuite/smbd/sec_ctx_nonroot.c
r414 r988 28 28 /* Become a non-root user */ 29 29 30 s etuid(1);31 s etgid(1);30 samba_setuid(1); 31 samba_setgid(1); 32 32 33 33 /* Try to push a security context. This should fail with a
Note:
See TracChangeset
for help on using the changeset viewer.