Build and run the lib/snprintf.c test cases from "make check".
authorMartin Pool <mbp@samba.org>
Mon, 14 Apr 2003 06:07:25 +0000 (06:07 +0000)
committerMartin Pool <mbp@samba.org>
Mon, 14 Apr 2003 06:07:25 +0000 (06:07 +0000)
(This used to be commit 95ff914d8263028711f36ccc2f6cd1127aaa7809)

source3/Makefile.in
source3/bin/.cvsignore
source3/stf/sambalib.py [new file with mode: 0644]
source3/stf/standardcheck.py

index f7c8d47862bd82cc32511d91562c0e9c8015a615..fd640a19a586df57958f7a202f24248bb6aa107c 100644 (file)
@@ -1369,4 +1369,4 @@ check: check-programs
 # These are called by the test suite and need to be built before
 # running it.  For the time being we don't build all of BIN_PROGS,
 # because they're not all needed.
-check-programs: bin/t_strcmp bin/t_push_ucs2 bin/smbcontrol
+check-programs: bin/t_strcmp bin/t_push_ucs2 bin/smbcontrol bin/t_snprintf
index 5c61680e12d7eca34425dc18783f5cf156cf5f9b..770100fd3128b4859f949fcdd41423cd284dcb0a 100644 (file)
@@ -39,6 +39,7 @@ smbtree
 smbumount
 swat
 t_push_ucs2
+t_snprintf
 t_strcmp
 t_stringoverflow
 talloctort
diff --git a/source3/stf/sambalib.py b/source3/stf/sambalib.py
new file mode 100644 (file)
index 0000000..13d38e2
--- /dev/null
@@ -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:
index bec21b8ec5f2449215ea86b1206909c61c452f87..e3292353e8be1ae9e83dcfb976179b2913909aee 100644 (file)
 """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)