diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-07-17 12:23:40 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:29:35 -0500 |
commit | 1735037d5f2b3dc1fa9f5d21721a7dc00c869172 (patch) | |
tree | 9cf024480ffec80df154c60872f069036ac34c93 /source4/build/smb_build/makefile.pm | |
parent | 039393d6620816789b4ebd131974b23b6420f4dc (diff) | |
download | samba-1735037d5f2b3dc1fa9f5d21721a7dc00c869172.tar.gz samba-1735037d5f2b3dc1fa9f5d21721a7dc00c869172.tar.bz2 samba-1735037d5f2b3dc1fa9f5d21721a7dc00c869172.zip |
r8525: added two more test targets:
- 'make quicktest' for running only quick tests. Finishes in 20
seconds or so.
- 'make valgrindtest' runs smbd under valgrind in a xterm window and
runs the quick tests. Also disables tls as that slows down valgrind
too much to be usable
(This used to be commit af36bc401154d278dbe272628110634f62fdba25)
Diffstat (limited to 'source4/build/smb_build/makefile.pm')
-rw-r--r-- | source4/build/smb_build/makefile.pm | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/source4/build/smb_build/makefile.pm b/source4/build/smb_build/makefile.pm index 013140298c..820ccfaf6c 100644 --- a/source4/build/smb_build/makefile.pm +++ b/source4/build/smb_build/makefile.pm @@ -148,10 +148,17 @@ basics: idl proto_exists HEIMDAL_EXTERNAL test: @DEFAULT_TEST_TARGET@ test-swrap: all - ./script/tests/selftest.sh @selftest_prefix@/prefix-test SOCKET_WRAPPER + ./script/tests/selftest.sh @selftest_prefix@/prefix-test all SOCKET_WRAPPER test-noswrap: all - ./script/tests/selftest.sh @selftest_prefix@/prefix-test + ./script/tests/selftest.sh @selftest_prefix@/prefix-test all + +quicktest: all + ./script/tests/selftest.sh @selftest_prefix@/prefix-test quick SOCKET_WRAPPER + +valgrindtest: all + SMBD_VALGRIND="xterm -n smbd -e valgrind -q --db-attach=yes --num-callers=30" \ + ./script/tests/selftest.sh @selftest_prefix@/prefix-test quick SOCKET_WRAPPER __EOD__ } |