You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In this step (Reproducing Bugs, get_trigger.pl) , we need to a way to automatically check whether each bug candidates exist in the trigger_tests folder. The script should flag bugs for manual inspection.
Below is the pseudocode:
flagged_bugs = []
For rev_entry in rev pairs:
check if the bug id exist in trigger test
if no:
determine the revision hash of the fixed version from active-bugs.csv
look up failing test of the revision hash
run mvn test
if the errors are consistent / the number is different
continue
else
flagged_bugs.append(rev_entry)
The text was updated successfully, but these errors were encountered:
In this step (Reproducing Bugs,
get_trigger.pl
) , we need to a way to automatically check whether each bug candidates exist in thetrigger_tests
folder. The script should flag bugs for manual inspection.Below is the pseudocode:
The text was updated successfully, but these errors were encountered: