nodejs: Fix ptest result reporting

This fixes
  AssertionError:-
  ptests which had no test results:
  ['nodejs']

Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
Khem Raj 2023-10-01 01:47:30 -07:00
parent 46d69cd07c
commit cd629b722d

View File

@ -1,3 +1,8 @@
#!/bin/sh
./cctest
if [ $? = 0 ]; then
echo "PASS: nodejs"
else
echo "FAIL: nodejs"
fi