mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-05-21 03:45:19 +00:00
This fixes AssertionError:- ptests which had no test results: ['nodejs'] Signed-off-by: Khem Raj <raj.khem@gmail.com>
9 lines
92 B
Bash
Executable File
9 lines
92 B
Bash
Executable File
#!/bin/sh
|
|
|
|
./cctest
|
|
if [ $? = 0 ]; then
|
|
echo "PASS: nodejs"
|
|
else
|
|
echo "FAIL: nodejs"
|
|
fi
|