Add two new test cases to script_tests.json:
b762538:
Add coverage for the error branch of OP_NUMEQUALVERIFY: https://github.com/bitcoin/bitcoin/blob/d861c3820528fad2e17a45549bec70b6ba434dcc/src/script/interpreter.cpp#L997
Note the code coverage miss: https://maflcko.github.io/b-c-cov/total.coverage/src/script/interpreter.cpp.gcov.html
8dd3db3:
Add a test case for OP_CHECKMULTISIG where the dummy element is missing. I used the existing success case as a reference: https://github.com/bitcoin/bitcoin/blob/d861c3820528fad2e17a45549bec70b6ba434dcc/src/test/data/script_tests.json#L1356-L1362
I ran: cmake -B build -DENABLE_WALLET=OFF && cmake --build build -j 8 && ctest --test-dir build -j 8