diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-10-08 01:58:42 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-10-08 02:19:59 +0200 |
commit | 3ecde315d3ef6d13ea3811d34deb51f87cdeaa6d (patch) | |
tree | eea36c016044a4c18a590ecaeeb4d462f3b73909 /source4/scripting/python/subunit/tests/sample-script.py | |
parent | 8da78b732554a88bee0f1dd547e329fe8d82b7f9 (diff) | |
download | samba-3ecde315d3ef6d13ea3811d34deb51f87cdeaa6d.tar.gz samba-3ecde315d3ef6d13ea3811d34deb51f87cdeaa6d.tar.bz2 samba-3ecde315d3ef6d13ea3811d34deb51f87cdeaa6d.zip |
Import tests for subunit python module.
Diffstat (limited to 'source4/scripting/python/subunit/tests/sample-script.py')
-rwxr-xr-x | source4/scripting/python/subunit/tests/sample-script.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/source4/scripting/python/subunit/tests/sample-script.py b/source4/scripting/python/subunit/tests/sample-script.py new file mode 100755 index 0000000000..223d2f5d9f --- /dev/null +++ b/source4/scripting/python/subunit/tests/sample-script.py @@ -0,0 +1,11 @@ +#!/usr/bin/env python +import sys +print "test old mcdonald" +print "success old mcdonald" +print "test bing crosby" +print "failure bing crosby [" +print "foo.c:53:ERROR invalid state" +print "]" +print "test an error" +print "error an error" +sys.exit(0) |