diff options
author | Martin Pool <mbp@samba.org> | 2003-04-14 06:07:25 +0000 |
---|---|---|
committer | Martin Pool <mbp@samba.org> | 2003-04-14 06:07:25 +0000 |
commit | 95ff914d8263028711f36ccc2f6cd1127aaa7809 (patch) | |
tree | aefb9b8343dacc92427d972ac407a81a526e9650 /source/stf | |
parent | b8dc14d1f90564558e438694b35b073291d5ce9e (diff) | |
download | samba-95ff914d8263028711f36ccc2f6cd1127aaa7809.tar.gz samba-95ff914d8263028711f36ccc2f6cd1127aaa7809.tar.xz samba-95ff914d8263028711f36ccc2f6cd1127aaa7809.zip |
Build and run the lib/snprintf.c test cases from "make check".
Diffstat (limited to 'source/stf')
-rw-r--r-- | source/stf/sambalib.py | 41 | ||||
-rw-r--r-- | source/stf/standardcheck.py | 4 |
2 files changed, 43 insertions, 2 deletions
diff --git a/source/stf/sambalib.py b/source/stf/sambalib.py new file mode 100644 index 00000000000..13d38e2a281 --- /dev/null +++ b/source/stf/sambalib.py @@ -0,0 +1,41 @@ +#! /usr/bin/python + +# Comfychair test cases for Samba string functions. + +# Copyright (C) 2003 by Martin Pool <mbp@samba.org> +# +# 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 + +"""Tests for Samba library functions.""" + +import sys, re, comfychair +from unicodenames import * + +class snprintf_Test(comfychair.TestCase): + def runtest(self): + # Everything is built in to the test + out, err = self.runcmd('t_snprintf') + +# Define the tests exported by this module +tests = [snprintf_Test] + +# Handle execution of this file as a main program +if __name__ == '__main__': + comfychair.main(tests) + +# Local variables: +# coding: utf-8 +# End: diff --git a/source/stf/standardcheck.py b/source/stf/standardcheck.py index bec21b8ec5f..e3292353e8b 100644 --- a/source/stf/standardcheck.py +++ b/source/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) |