diff options
-rw-r--r-- | meta/classes/testsdk.bbclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/classes/testsdk.bbclass b/meta/classes/testsdk.bbclass index 43342b1f25..06b4c5034f 100644 --- a/meta/classes/testsdk.bbclass +++ b/meta/classes/testsdk.bbclass | |||
@@ -59,7 +59,7 @@ def testsdk_main(d): | |||
59 | 59 | ||
60 | tcname = d.expand("${SDK_DEPLOY}/${TOOLCHAIN_OUTPUTNAME}.sh") | 60 | tcname = d.expand("${SDK_DEPLOY}/${TOOLCHAIN_OUTPUTNAME}.sh") |
61 | if not os.path.exists(tcname): | 61 | if not os.path.exists(tcname): |
62 | bb.fatal("The toolchain is not built. Build it before running the tests: 'bitbake <image> -c populate_sdk' .") | 62 | bb.fatal("The toolchain %s is not built. Build it before running the tests: 'bitbake <image> -c populate_sdk' ." % tcname) |
63 | 63 | ||
64 | sdktestdir = d.expand("${WORKDIR}/testimage-sdk/") | 64 | sdktestdir = d.expand("${WORKDIR}/testimage-sdk/") |
65 | bb.utils.remove(sdktestdir, True) | 65 | bb.utils.remove(sdktestdir, True) |
@@ -109,8 +109,8 @@ def testsdkext_main(d): | |||
109 | 109 | ||
110 | tcname = d.expand("${SDK_DEPLOY}/${TOOLCHAINEXT_OUTPUTNAME}.sh") | 110 | tcname = d.expand("${SDK_DEPLOY}/${TOOLCHAINEXT_OUTPUTNAME}.sh") |
111 | if not os.path.exists(tcname): | 111 | if not os.path.exists(tcname): |
112 | bb.fatal("The toolchain ext is not built. Build it before running the" \ | 112 | bb.fatal("The toolchain ext %s is not built. Build it before running the" \ |
113 | " tests: 'bitbake <image> -c populate_sdk_ext' .") | 113 | " tests: 'bitbake <image> -c populate_sdk_ext' ." % tcname) |
114 | 114 | ||
115 | testdir = d.expand("${WORKDIR}/testsdkext/") | 115 | testdir = d.expand("${WORKDIR}/testsdkext/") |
116 | bb.utils.remove(testdir, True) | 116 | bb.utils.remove(testdir, True) |