The way to do what you want is to use the bisect run <script>
.
Use the bisect as you did so far and use the bisect with the script option.
The script will return the appropriate code for skipping (or 125 for not testable - much more suitable in your case).
Note that the script should exit with code 0
if the current source code is good, and exit with a code between 1 and 127
(inclusive), except 125
, if the current source code is bad.
Any other exit code will abort the bisect process. It should be noted that a program that terminates via "exit(-1)" leaves $? = 255, (see the exit(3) manual page), as the value is chopped with "& 0377".
The special exit code 125 should be used when the current source code cannot be tested. If the script exits with this code, the current revision will be skipped (see git bisect skip above).
125
was chosen as the highest sensible value to use for this purpose, because 126
and 127
are used by POSIX shells to signal specific error status (127
is for command not found, 126
is for command found but not executable---these details do not matter, as they are normal errors in the script, as far as bisect run
is concerned).
Demo code
Here you can view a sample code on how to use git bisect