Currently, the script attempts to compare a function even if it was just added in the commit that we want to compare. This results in an unknown status for the function. Fix the function detection by not detecting functions that are only in one version/commit. A problem to consider is when a function is moved to a different file.
Example of this problem can see be seen here, where the function stack_map_calculate_max_depth was compared even when it was added in the second / compared commit.
Currently, the script attempts to compare a function even if it was just added in the commit that we want to compare. This results in an
unknownstatus for the function. Fix the function detection by not detecting functions that are only in one version/commit. A problem to consider is when a function is moved to a different file.Example of this problem can see be seen here, where the function
stack_map_calculate_max_depthwas compared even when it was added in the second / compared commit.