1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-08 05:09:24 +00:00

qemu: update run-ptest script

The Makefile in directory tests has been renamed, then update script
run-ptest to follow the change.

(From OE-Core rev: 364565f3f3baccc9757ce0dcb393464b38055b4f)

Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Kai Kang
2016-11-10 15:01:26 +08:00
committed by Richard Purdie
parent 5acde3db0e
commit 775e7a4904
+5 -3
View File
@@ -1,8 +1,10 @@
#!/bin/sh
#
#This script is used to run qemu test suites
ptestdir=$(pwd)
cd tests
#
ptestdir=$(dirname "$(readlink -f "$0")")
export SRC_PATH=$ptestdir
make -k runtest-TESTS | sed '/: OK/ s/^/PASS: /g'
cd $ptestdir/tests
make -f Makefile.include -k runtest-TESTS | sed '/: OK/ s/^/PASS: /g'