turn utils into a simple mix-in

Signed-off-by: Martin Bligh <mbligh@google.com>



git-svn-id: http://test.kernel.org/svn/autotest/trunk@2667 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/client/bin/utils.py b/client/bin/utils.py
new file mode 100755
index 0000000..98da12c
--- /dev/null
+++ b/client/bin/utils.py
@@ -0,0 +1,13 @@
+"""
+Convenience functions for use by tests or whomever.
+
+NOTE: this is a mixin library that pulls in functions from several places
+Note carefully what the precendece order is
+
+There's no really good way to do this, as this isn't a class we can do
+inheritance with, just a collection of static methods.
+"""
+
+from autotest_lib.client.common_lib.utils import *
+from autotest_lib.client.bin.base_utils import *
+from autotest_lib.client.bin.site_utils import *