summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/recipes-core/meta/buildtools-tarball.bb13
1 files changed, 13 insertions, 0 deletions
diff --git a/meta/recipes-core/meta/buildtools-tarball.bb b/meta/recipes-core/meta/buildtools-tarball.bb
index 9775430d4b..6e96cf6c32 100644
--- a/meta/recipes-core/meta/buildtools-tarball.bb
+++ b/meta/recipes-core/meta/buildtools-tarball.bb
@@ -99,3 +99,16 @@ TOOLCHAIN_NEED_CONFIGSITE_CACHE = ""
99 99
100# The recipe doesn't need any default deps 100# The recipe doesn't need any default deps
101INHIBIT_DEFAULT_DEPS = "1" 101INHIBIT_DEFAULT_DEPS = "1"
102
103python do_testsdk() {
104 import oeqa.sdk.testsdk
105 testsdk = oeqa.sdk.testsdk.TestSDK()
106
107 cases_path = os.path.join(os.path.abspath(os.path.dirname(oeqa.sdk.testsdk.__file__)), "buildtools-cases")
108 testsdk.context_executor_class.default_cases = cases_path
109
110 testsdk.run(d)
111}
112addtask testsdk
113do_testsdk[nostamp] = "1"
114do_testsdk[depends] += "xz-native:do_populate_sysroot"