From de12a0d95402511907064e82547d614df8f9a2aa Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Wed, 19 Mar 2003 03:56:50 +0000 Subject: Add an STF module that defines the tests to be run by "make check". (This used to be commit a5a2cc9ae9668e66d39beed1fdad4df0405fa4da) --- source3/stf/standardcheck.py | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 source3/stf/standardcheck.py (limited to 'source3/stf/standardcheck.py') diff --git a/source3/stf/standardcheck.py b/source3/stf/standardcheck.py new file mode 100644 index 0000000000..5af1c78376 --- /dev/null +++ b/source3/stf/standardcheck.py @@ -0,0 +1,33 @@ +#! /usr/bin/python + +# Comfychair test cases for Samba + +# Copyright (C) 2003 by Martin Pool +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 +# USA + +"""These tests are run by Samba's "make check".""" + +import strings, comfychair + +# There should not be any actual tests in here: this file just serves +# to define the ones run by default. They're imported from other +# modules. + +tests = strings.tests + +if __name__ == '__main__': + comfychair.main(tests) -- cgit From 2228271d684753f6a0fb20da87ccf1454d554f39 Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Mon, 14 Apr 2003 00:21:52 +0000 Subject: Syncup stf directory with HEAD. (This used to be commit 161740392903e3e1b9281b9f72e61846b543b67f) --- source3/stf/standardcheck.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source3/stf/standardcheck.py') diff --git a/source3/stf/standardcheck.py b/source3/stf/standardcheck.py index 5af1c78376..bec21b8ec5 100644 --- a/source3/stf/standardcheck.py +++ b/source3/stf/standardcheck.py @@ -22,12 +22,13 @@ """These tests are run by Samba's "make check".""" import strings, comfychair +import smbcontrol # There should not be any actual tests in here: this file just serves # to define the ones run by default. They're imported from other # modules. -tests = strings.tests +tests = strings.tests + smbcontrol.tests if __name__ == '__main__': comfychair.main(tests) -- cgit From 322d385b6e67dd8add75bce7db093e443bce729a Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Mon, 28 Apr 2003 05:20:01 +0000 Subject: Merge stf updates from HEAD. (This used to be commit 20bde94eb881009128794283a1d7537bbc62e268) --- source3/stf/standardcheck.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/stf/standardcheck.py') diff --git a/source3/stf/standardcheck.py b/source3/stf/standardcheck.py index bec21b8ec5..e3292353e8 100644 --- a/source3/stf/standardcheck.py +++ b/source3/stf/standardcheck.py @@ -22,13 +22,13 @@ """These tests are run by Samba's "make check".""" import strings, comfychair -import smbcontrol +import smbcontrol, sambalib # There should not be any actual tests in here: this file just serves # to define the ones run by default. They're imported from other # modules. -tests = strings.tests + smbcontrol.tests +tests = strings.tests + smbcontrol.tests + sambalib.tests if __name__ == '__main__': comfychair.main(tests) -- cgit From 34bb47c9b0f33c20a22df66326f674363ceea1a0 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 10 Jul 2007 01:52:05 +0000 Subject: r23791: found some more v2->v3 conversions (This used to be commit b6cbac3db3b478d5c7991cee78c6695fc8d22681) --- source3/stf/standardcheck.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/stf/standardcheck.py') diff --git a/source3/stf/standardcheck.py b/source3/stf/standardcheck.py index e3292353e8..8cd8236a7a 100644 --- a/source3/stf/standardcheck.py +++ b/source3/stf/standardcheck.py @@ -6,7 +6,7 @@ # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as -# published by the Free Software Foundation; either version 2 of the +# published by the Free Software Foundation; either version 3 of the # License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, but -- cgit From 9fa1c63578733077c0aaaeeb2fc97c3b191089cc Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 10 Jul 2007 03:42:26 +0000 Subject: r23798: updated old Temple Place FSF addresses to new URL (This used to be commit c676a971142d7176fd5dbf21405fca14515a0a76) --- source3/stf/standardcheck.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'source3/stf/standardcheck.py') diff --git a/source3/stf/standardcheck.py b/source3/stf/standardcheck.py index 8cd8236a7a..3261aed34b 100644 --- a/source3/stf/standardcheck.py +++ b/source3/stf/standardcheck.py @@ -15,9 +15,7 @@ # General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 -# USA +# along with this program; if not, see . """These tests are run by Samba's "make check".""" -- cgit