As discussed previously regarding support for proprietary/internal
tests, support for a site_tests directory was implemented. Tests
contained on site_tests are executed over eventual versions that are
located on the standard tests dir.

This way, it's possible to separate proprietary/internal tests. I know
that this can possibly be a controversial change, so let me know if
there are any problems.

Signed-off-by: Lucas Meneghel Rodrigues <lucasmr@br.ibm.com>



git-svn-id: http://test.kernel.org/svn/autotest/trunk@1203 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/client/bin/job.py b/client/bin/job.py
index d34febd..2059fc4 100755
--- a/client/bin/job.py
+++ b/client/bin/job.py
@@ -30,6 +30,8 @@
 			<autodir>/lib/
 		testdir
 			<autodir>/tests/
+		site_testdir
+			<autodir>/site_tests/
 		profdir
 			<autodir>/profilers/
 		tmpdir
@@ -65,6 +67,7 @@
 		self.bindir = os.path.join(self.autodir, 'bin')
 		self.libdir = os.path.join(self.autodir, 'lib')
 		self.testdir = os.path.join(self.autodir, 'tests')
+		self.site_testdir = os.path.join(self.autodir, 'site_tests')
 		self.profdir = os.path.join(self.autodir, 'profilers')
 		self.tmpdir = os.path.join(self.autodir, 'tmp')
 		self.resultdir = os.path.join(self.autodir, 'results', jobtag)