summaryrefslogtreecommitdiff
path: root/scripts/oe-git-proxy
diff options
context:
space:
mode:
authorBruce Ashfield <bruce.ashfield@windriver.com>2017-08-20 22:58:21 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-08-23 08:47:05 +0100
commit44aea7b87307795fe4e089c51d45afccaa2f6525 (patch)
tree59c96d20962e4892301337dc8b776264fff55771 /scripts/oe-git-proxy
parentc58df63d88a07d3275e7337f7d284b0a50db82cc (diff)
downloadopenembedded-core-44aea7b87307795fe4e089c51d45afccaa2f6525.tar.gz
openembedded-core-44aea7b87307795fe4e089c51d45afccaa2f6525.tar.bz2
openembedded-core-44aea7b87307795fe4e089c51d45afccaa2f6525.zip
kernel-yocto: ensure that only valid BSPs are built
There was a bug in the search routines responsible for locating BSP definitions which returned a valid match if only the ktype matched. This meant that someone looking for "qemux86foo" (which is an invalid definition) would potentially end up building "qemuarm" and be none the wiser (until it didn't boot). With this fix to the tools search routine, and improved return code testing, we will now stop the build and report and error to the user. [YOCTO: #11878] Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/oe-git-proxy')
0 files changed, 0 insertions, 0 deletions
255cb58cbd142f38aad4a56898b61a6'>qemuimagetest: Enable toolchain automation tests in qemuimagetestJiajun Xu1 Enable toolchain automation tests in qemuimagetest framework. 3 C/C++ test projects are added to test toolchain - cvs, iptables and sudoku-savant. User needs to set TEST_SCEN to "toolchain" in local.conf to enable tests. Test case will check if toolchain tarball exists under "${DEPLOY_DIR}/sdk". And it will extract toolchain tarball into /opt. It requires user to chown /opt to non-root user, who will run qemuimagetest. Signed-off-by Jiajun Xu <jiajun.xu@intel.com> 2011-04-20Replace POKYBASE with COREBASERichard Purdie1 Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> 2011-04-20Rename poky-qemu to runqemuRichard Purdie1 Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> 2011-02-10qemuimagetest: Rename test scenario file from poky-image-sdk to ↵Jiajun Xu1 poky-image-sato-sdk Signed-off-by Jiajun Xu <jiajun.xu@intel.com> 2011-01-20qemuimagetest: Use same image during sanity testing instead of copying a new ↵Jiajun Xu1 image for each case To reduce the time on sanity testing, we remove variable SHARE_IMAGE and use a new variable TEST_SERIALIZE in local.conf. It is by default set to 1. Poky will copy and boot the to-be tested image for only once. It will not remove or kill the image and test cases will be serialized executed against the same image. If it is set to 0, image is always be copied for each cases, which takes much time. I had a experiment that latest qemuppc sato only takes 7 minutes to finish 9 sanity test cases, which takes more than 20 minutes before. I also removed sanity case "boot" from sato/sdk/lsb because the other cases for these targets already cover the check point of "boot". Signed-off-by Jiajun Xu <jiajun.xu@intel.com> 2011-01-14qemuimagetest: Use the same image in sanity testing to fix the timeout issue ↵Jiajun Xu1 on autobuilder Fixes [BUGID #595] Because of the QEMU booting slowness issue(see bug #646 and #618), autobuilder may suffer a timeout issue when running sanity test. We introduce variable SHARE_IMAGE here to fix the issue. It is by default set to 1. Poky will copy latest built-out image and keep using it in sanity testing. If it is set to 0, latest built-out image will be copied and tested for each case, which will take much time. Signed-off-by Jiajun Xu <jiajun.xu@intel.com> 2011-01-06qemuimagetest: Remove connman test for lsb image and fix one warning in ↵Jiajun Xu1 Test_Create_Qemu There is no connman in LSB image. So we need to remove connman test from it. And when we check if ip address fetched by Test_Fetch_Target_IP is valid, we should use "==" operator for string comparison. Signed-off-by Jiajun Xu <jiajun.xu@intel.com> 2010-12-24qemuimage-testlib: Improve quoting causing problems under certain circumstancesRichard Purdie1 Signed-off-by: Richard Purdie <rpurdie@linux.intel.com> 2010-12-23qemuimage-testlib: Fix the check for running qemu processesRichard Purdie1 Previously, any active command containing the word "qemu" including in the command path would trigger a "success" result for detecting the qemu process. This change fixes the check to search for commands starting with "qemu" and ignores pathnames. It also shortens the timeout for the qemu process to appear to 10 seconds. If it doesn't appear in that time there is always a problem. Signed-off-by: Richard Purdie <rpurdie@linux.intel.com> 2010-12-23qemuimage-testlib: Ensure TOPDIR/BUILDDIR are setRichard Purdie1 The recent environment changes mean TOPDIR/BUILDDIR need to be exported specifcially to the enviromnent so the qemu scripts can find the correct build directory. Without this, qemu can fail to run. Signed-off-by: Richard Purdie <rpurdie@linux.intel.com> 2010-12-23qemuimage-testlib: Add check for existence of image and correctness of ip ↵Jiajun Xu1 address Fixes [BUGID #612, #611] Add check for existence of image to be tested in qemuimage-testlib. This ensures that sanity test returns failure immediatly when there is no image found. And also add check for the correctness of ip address. If the ip address returned by function Test_Fetch_Target_IP is 0, it means qemu starts up failed and no valid ip address found. Signed-off-by Jiajun Xu <jiajun.xu@intel.com> 2010-11-14imagetest-qemu: Add sanity test cases for scp/shutdown in targetJiajun Xu1 scp test is to check if file copying via network work or not in target. shutdown test is to check if target can be poweroff with qemu process off. Signed-off-by Jiajun Xu <jiajun.xu@intel.com> 2010-11-10imagetest-qemu: Add test case for dmesg check in targetJiajun Xu1 Add a test case for error log check with command dmesg in target. The case introduces a new folder in target, "/opt/test", which holds test scripts running in target. Signed-off-by Jiajun Xu <jiajun.xu@intel.com> 2010-09-02qemuimage-testlib: kill qemu process according to its pid, instead of ↵Jiajun Xu1 process name poky-qemu-internal will set up a tap lockfile when creating tap device. The lockfile will be released when a TERM signal is received. In previous code, function Test_Kill_Qemu uses pkill to kill all process named "qemu". This may cause lockfile release function not work in poky-qemu-internal. Then poky-qemu-internal will be hang when user start QEMU the second time. To prevent the issue, the new function Test_Kill_Qemu kills all child pid with a given parent process ID. Signed-off-by Jiajun Xu <jiajun.xu@intel.com> 2010-08-13testlib: Add support for qemumips/qemuppc/qemux86-64, and add support for ↵Jiajun Xu1 testing with images from autobuilder Signed-off-by Jiajun Xu <jiajun.xu@intel.com> 2010-07-15test: add automation framework and sanitytestJiajun Xu1 Automation test is disabled by default. User need set TESTCLASS to qemu in conf/local.conf and run bitbake command "bitbake poky-image-xxx" or "bitbake poky-image-xxx -c qemuimagetest" to trigger it. Currently only the sanity test with two testcases are added. To run the test, user need prepare a testing environment: 1) "expect" should be installed on system 2) NOPASSWD should be set for user to run bitbake Signed-off-by Jiajun Xu <jiajun.xu@intel.com>