From: Ethan Jackson Date: Fri, 2 Mar 2012 00:21:55 +0000 (-0800) Subject: tests: Prefer development Python files over installed ones. X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;ds=sidebyside;h=edcb6e25301694e9310210f126da80781f792132;p=sliver-openvswitch.git tests: Prefer development Python files over installed ones. A developer may have Open vSwitch installed, in which case many of the Python files which are tested will be in both the development tree and the system Python library. When running unit tests, we want to test the development tree, so it's better to prefer importing those files. Signed-off-by: Ethan Jackson --- diff --git a/tests/atlocal.in b/tests/atlocal.in index 9c9f654cc..bfdb847ca 100644 --- a/tests/atlocal.in +++ b/tests/atlocal.in @@ -4,7 +4,7 @@ HAVE_PYTHON='@HAVE_PYTHON@' PERL='@PERL@' PYTHON='@PYTHON@' -PYTHONPATH=$PYTHONPATH:$abs_top_srcdir/python +PYTHONPATH=$abs_top_srcdir/python:$PYTHONPATH export PYTHONPATH PYTHONIOENCODING=utf_8