diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-05-11 05:45:49 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-05-11 05:45:49 +0200 |
commit | 47d22189227c0dd6f2f370ade2cfb878eef0f240 (patch) | |
tree | 140e95547647681bec00137c935a5a1b0463247b /source4/scripting/bin/subunitrun | |
parent | babdcc6135e6d3a91a9ddeae0555652026f09344 (diff) | |
download | samba-47d22189227c0dd6f2f370ade2cfb878eef0f240.tar.gz samba-47d22189227c0dd6f2f370ade2cfb878eef0f240.tar.bz2 samba-47d22189227c0dd6f2f370ade2cfb878eef0f240.zip |
Set sys.path for running inside source tree.
(This used to be commit b507109bb676715f7d9616e13b0e19305e9c2559)
Diffstat (limited to 'source4/scripting/bin/subunitrun')
-rwxr-xr-x | source4/scripting/bin/subunitrun | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source4/scripting/bin/subunitrun b/source4/scripting/bin/subunitrun index 719a58d9e5..de11aba3cc 100755 --- a/source4/scripting/bin/subunitrun +++ b/source4/scripting/bin/subunitrun @@ -18,7 +18,9 @@ # import sys -sys.path.append("bin/python") + +# Find right directory when running from source tree +sys.path.insert(0, "bin/python") from subunit import SubunitTestRunner from unittest import TestProgram |