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)

(From OE-Core rev: aece2afafbd304adee30978537b9404a9344dd4e)

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>
Signed-off-by: Armin Kuster <akuster808@gmail.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 8d1afc2a0d
commit 460bbf456b

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'