From bf7383de87cdb12c857a5577c89acf6855d96dfa Mon Sep 17 00:00:00 2001 From: Stefan Stanacar Date: Thu, 16 Jan 2014 14:48:59 +0200 Subject: lib/oeqa: allow a layer to provide it's own TEST_TARGET class Allows a layer to define new classes in /lib/oeqa/utils/controllers.py and completely control or extend deployment of a target. (core currently has QemuTarget and SimpleRemoteTarget). The value of TEST_TARGET must be the name of the new class. (From OE-Core rev: 9b81aff0aca42353d448b1e9522f89842e23c7b2) Signed-off-by: Stefan Stanacar Signed-off-by: Richard Purdie --- meta/lib/oeqa/utils/__init__.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'meta/lib/oeqa/utils/__init__.py') diff --git a/meta/lib/oeqa/utils/__init__.py b/meta/lib/oeqa/utils/__init__.py index e69de29bb2..8eda92763c 100644 --- a/meta/lib/oeqa/utils/__init__.py +++ b/meta/lib/oeqa/utils/__init__.py @@ -0,0 +1,3 @@ +# Enable other layers to have modules in the same named directory +from pkgutil import extend_path +__path__ = extend_path(__path__, __name__) -- cgit v1.2.3-54-g00ecf