mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-15 16:07:26 +00:00
cd629b722d
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
|