mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-27 07:57:27 +00:00
26c812ece4
OpenHPI is an open source project created with the intent of providing an implementation of the SA Forum's Hardware Platform Interface (HPI). Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
6 lines
94 B
Bash
Executable File
6 lines
94 B
Bash
Executable File
#!/bin/sh
|
|
for x in `find ./ -name Makefile`;
|
|
do
|
|
make -C `dirname ${x}` -k runtest-TESTS
|
|
done
|