summaryrefslogtreecommitdiff
path: root/print_results_general
blob: 07fdab81c4a235e162c205f2d24addb6f887ec6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/bash
# Analyze and print general test results

TEST_DIR="test_general"

echo "Cppunittests:"
grep "cppunittests INFO | Passed:" $TEST_DIR/cppunittest
grep "cppunittests INFO | Failed:" $TEST_DIR/cppunittest
echo " "

echo "JSAPI test:"
echo -n "PASSED: "
grep "TEST-PASS" $TEST_DIR/jsapi | wc -l
echo " "

echo "JStests test:"
tail -n 1 $TEST_DIR/jstests
echo " "

echo "Rust tests"
grep "test result:" $TEST_DIR/rusttests
echo " "
bgstack15