From 4dc97bea8baa5ea545b29d02061656eede309930 Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Mon, 14 Apr 2003 06:07:25 +0000 Subject: Build and run the lib/snprintf.c test cases from "make check". (This used to be commit 95ff914d8263028711f36ccc2f6cd1127aaa7809) --- source3/stf/sambalib.py | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 source3/stf/sambalib.py (limited to 'source3/stf/sambalib.py') diff --git a/source3/stf/sambalib.py b/source3/stf/sambalib.py new file mode 100644 index 0000000000..13d38e2a28 --- /dev/null +++ b/source3/stf/sambalib.py @@ -0,0 +1,41 @@ +#! /usr/bin/python + +# Comfychair test cases for Samba string functions. + +# 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 + +"""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: -- 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/sambalib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/stf/sambalib.py') diff --git a/source3/stf/sambalib.py b/source3/stf/sambalib.py index 13d38e2a28..1d513665ff 100644 --- a/source3/stf/sambalib.py +++ b/source3/stf/sambalib.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/sambalib.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'source3/stf/sambalib.py') diff --git a/source3/stf/sambalib.py b/source3/stf/sambalib.py index 1d513665ff..552280ed29 100644 --- a/source3/stf/sambalib.py +++ b/source3/stf/sambalib.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 . """Tests for Samba library functions.""" -- cgit