Stories
Slash Boxes
Comments

SoylentNews is people

Submission Preview

Link to Story

Automated debugging

Accepted submission by hendrikboom http://topoi.pooq.com/hendrik at 2018-12-21 12:36:31 from the Code mangling dept.
Software

It appears Facebook has a tool for automatically suggesting bug fixes [fb.com].

Facebook has built a tool called Getafix that automatically finds fixes for bugs and offers them to engineers to approve. This allows engineers to work more effectively, and it promotes better overall code quality.
        We believe Getafix is the first tool of its kind to be deployed to production at Facebook scale, contributing to the stability and performance of apps that billions of people use.
        Getafix powers Sapfix, which suggests fixes for bugs that our Sapienz testing tool finds. Getafix also provides fixes for bugs found by Infer, our static testing tool.
        Because Getafix learns from engineers’ past code fixes, its recommendations are intuitive for engineers to review.
        Getafix improves upon previous auto-fix technology by using more powerful techniques for learning fix patterns from past code changes. Getafix uses a more powerful clustering algorithm and also analyzes the context around the particular lines of problematic code to find more appropriate fixes.

I wonder how easy it is to start accepting fixes without properly examining them. I wonder if the time saved in actually coding the fix is irrelevant compared with the time you would otherwise take to find the correct fix.

It will easily fix the obvious symptoms of a bug without addressing the real problem. The illusion of productivity.


Original Submission