Changeset 989 for vendor/current/source4/selftest
- Timestamp:
- Nov 25, 2016, 8:04:54 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/source4/selftest/tests.py
r988 r989 301 301 ntvfsargs = ["--option=torture:sharedelay=100000", "--option=torture:oplocktimeout=3", "--option=torture:writetimeupdatedelay=500000"] 302 302 303 # smb2.change_notify_disabled must only run against env fileserver-notify-disabled 304 smb2 = filter(lambda x: "smb2.change_notify_disabled" not in x, smbtorture4_testsuites("smb2.")) 303 # Filter smb2 tests that should not run against ad_dc_ntvfs 304 smb2_s3only = ["smb2.change_notify_disabled", "smb2.dosmode"] 305 smb2 = [x for x in smbtorture4_testsuites("smb2.") if x not in smb2_s3only] 305 306 306 307 #The QFILEINFO-IPC test needs to be on ipc$ … … 358 359 # DNS tests 359 360 plantestsuite_loadlist("samba.tests.dns", "fl2003dc:local", [python, os.path.join(srcdir(), "python/samba/tests/dns.py"), '$SERVER', '$SERVER_IP', '--machine-pass', '-U"$USERNAME%$PASSWORD"', '--workgroup=$DOMAIN', '$LOADLIST', '$LISTOPT']) 361 362 plantestsuite_loadlist("samba.tests.dns_tkey", "fl2008r2dc", [python, os.path.join(srcdir(), "python/samba/tests/dns_tkey.py"), '$SERVER', '$SERVER_IP', '--machine-pass', '-U"$USERNAME%$PASSWORD"', '--workgroup=$DOMAIN', '$LOADLIST', '$LISTOPT']) 360 363 361 364 for t in smbtorture4_testsuites("dns_internal."): … … 508 511 plantestsuite("samba.ntlm_auth.(%s:local)" % env, "%s:local" % env, [os.path.join(samba3srcdir, "script/tests/test_ntlm_auth_s3.sh"), valgrindify(python), samba3srcdir, ntlm_auth3, '$DOMAIN', '$DC_USERNAME', '$DC_PASSWORD', configuration]) 509 512 513 for env in ["s4member_dflt_domain", "s4member"]: 514 for cmd in ["id", "getent"]: 515 users = ["$DC_USERNAME", "$DC_USERNAME@$REALM"] 516 if env == "s4member": 517 users = ["$DOMAIN/$DC_USERNAME", "$DC_USERNAME@$REALM"] 518 for usr in users: 519 plantestsuite("samba4.winbind.dom_name_parse.cmd", env, "%s/dom_parse.sh %s %s" % (bbdir,cmd,usr)) 510 520 511 521 nsstest4 = binpath("nsstest") … … 537 547 planpythontestsuite("ad_dc_ntvfs:local", "samba.tests.dcerpc.srvsvc") 538 548 planpythontestsuite("ad_dc_ntvfs:local", "samba.tests.samba_tool.timecmd") 549 550 # test fsmo show 551 for env in ["ad_dc_ntvfs", "fl2000dc", "fl2003dc", "fl2008r2dc"]: 552 planpythontestsuite(env + ":local", "samba.tests.samba_tool.fsmo") 539 553 540 554 # We run this test against both AD DC implemetnations because it is
Note:
See TracChangeset
for help on using the changeset viewer.