The #! /usr/bin/env bash was missing from create_failing_test_stub, causing the two tests using it to fail under MSYS2, which uses the shebang to determine whether or not a script is executable in lieu of using chmod to set file permissions.
Coverage remained the same at 95.264% when pulling 3f0d2a807942de797643414dfaffd39fe1352d0e on msys2-fix into 5adbe5e537d10c0739a65d776e9471b20d411890 on master.
The
#! /usr/bin/env bash
was missing fromcreate_failing_test_stub
, causing the two tests using it to fail under MSYS2, which uses the shebang to determine whether or not a script is executable in lieu of usingchmod
to set file permissions.