diff options
author | Alex Chen <Cnly@users.noreply.github.com> | 2019-06-21 23:49:37 +0800 |
---|---|---|
committer | Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> | 2019-06-21 16:49:37 +0100 |
commit | adaec7c8e74ca877f125c56e3a659382abbb185d (patch) | |
tree | 927e22ac444f4fce658cae223cfca8ceb9753d67 /show-expected-fail-tests.sh | |
parent | bc382bba4623a1c7ae16535541f2f4b23708999c (diff) |
Refine config and docs for sytest (#714)
This PR adds the "passed but expected fail" tests to testfile, as well as instructions on finding which tests to add for new PRs.
Diffstat (limited to 'show-expected-fail-tests.sh')
-rwxr-xr-x | show-expected-fail-tests.sh | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/show-expected-fail-tests.sh b/show-expected-fail-tests.sh new file mode 100755 index 00000000..277a2c8b --- /dev/null +++ b/show-expected-fail-tests.sh @@ -0,0 +1,29 @@ +#! /bin/bash + +results_file=$1 +passed_but_expected_fail=$(grep ' # TODO passed but expected fail' ${results_file} | sed -E 's/^ok [0-9]+ (\(expected fail\) )?//' | sed -E 's/( \([0-9]+ subtests\))? # TODO passed but expected fail$//') +tests_to_add="" +already_in_testfile="" + +fail_build=0 +while read -r test_id; do + grep "${test_id}" testfile > /dev/null 2>&1 + if [ "$?" != "0" ]; then + tests_to_add="${tests_to_add}${test_id}\n" + fail_build=1 + else + already_in_testfile="${already_in_testfile}${test_id}\n" + fi +done <<< "${passed_but_expected_fail}" + +if [ -n "${tests_to_add}" ]; then + echo "ERROR: The following passed tests are not present in testfile. Please append them to the file:" + echo -e "${tests_to_add}" +fi + +if [ -n "${already_in_testfile}" ]; then + echo "WARN: Tests in testfile still marked as expected fail:" + echo -e "${already_in_testfile}" +fi + +exit ${fail_build} |