diff options
author | Tim Potter <tpot@samba.org> | 2006-03-30 04:39:37 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:59:20 -0500 |
commit | 86971ff3b930a93de55aae00fe66f3d1d10dbcb4 (patch) | |
tree | 6f327b2c659ca4b8c277816ad514caf671b0db89 /source4/scripting/swig | |
parent | ed3fc628713e1f9552b523c9aec9bd8993e0b771 (diff) | |
download | samba-86971ff3b930a93de55aae00fe66f3d1d10dbcb4.tar.gz samba-86971ff3b930a93de55aae00fe66f3d1d10dbcb4.tar.bz2 samba-86971ff3b930a93de55aae00fe66f3d1d10dbcb4.zip |
r14798: Get swig building again (by commenting out dcerpc stuff for now).
Add the start of a test framework for swigged functionality.
(This used to be commit 3dfd0959f78518c021417f3f1158c51d70a1e88c)
Diffstat (limited to 'source4/scripting/swig')
-rwxr-xr-x | source4/scripting/swig/torture/torture_tdb.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/source4/scripting/swig/torture/torture_tdb.py b/source4/scripting/swig/torture/torture_tdb.py new file mode 100755 index 0000000000..4c44096811 --- /dev/null +++ b/source4/scripting/swig/torture/torture_tdb.py @@ -0,0 +1,10 @@ +#!/usr/bin/python + +import sys, tdb +from os import * + +t = tdb.open('foo.tdb', 0, 0, O_RDWR | O_CREAT, 0600) +tdb.close(t) + +unlink('foo.tdb') + |