Khem Raj cd629b722d nodejs: Fix ptest result reporting
This fixes
  AssertionError:-
  ptests which had no test results:
  ['nodejs']

Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-10-02 10:03:23 -07:00

9 lines
92 B
Bash
Executable File

#!/bin/sh
./cctest
if [ $? = 0 ]; then
echo "PASS: nodejs"
else
echo "FAIL: nodejs"
fi