diff options
author | Tim Potter <tpot@samba.org> | 2005-02-13 00:59:26 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:09:47 -0500 |
commit | 11e6c958fdfda9c42f0e69f59af7f1d2bdca010c (patch) | |
tree | 21e85cabe3a867d5873dd2c04c6be994ab63777e /source4/scripting/swig/torture/pytorture | |
parent | 74e9fce454aa55bc2b08da6341f2851e1b8b12b7 (diff) | |
download | samba-11e6c958fdfda9c42f0e69f59af7f1d2bdca010c.tar.gz samba-11e6c958fdfda9c42f0e69f59af7f1d2bdca010c.tar.bz2 samba-11e6c958fdfda9c42f0e69f59af7f1d2bdca010c.zip |
r5369: Rename torture modules so they don't conflict with files in scripting/swig.
Start porting samr torture test to new API.
(This used to be commit 14593939830e130ae306b82a6c063ec9d7f36b93)
Diffstat (limited to 'source4/scripting/swig/torture/pytorture')
-rwxr-xr-x | source4/scripting/swig/torture/pytorture | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/scripting/swig/torture/pytorture b/source4/scripting/swig/torture/pytorture index 8a8f4d8bdf..fd4a92eeb4 100755 --- a/source4/scripting/swig/torture/pytorture +++ b/source4/scripting/swig/torture/pytorture @@ -40,7 +40,7 @@ if len(args) == 0: for test in args: try: - module = __import__(test) + module = __import__('torture_%s' % test) except ImportError: print 'No such module "%s"' % test sys.exit(1) |