←back to thread

Mozilla lays off 70

(techcrunch.com)
929 points ameshkov | 1 comments | | HN request time: 0.202s | source
Show context
strict9 ◴[] No.22058568[source]
Not sure of Mozilla’s financial or organizational structure but it seems to be part of a larger trend of de-emphasizing QA departments at software shops large and small over the past 10 or so years.

In many ways test automation tooling has become much easier to use, develop, and manage.

But I suspect the larger driving force is that it’s (arguably) a cost center for an org. The burden of ensuring software quality can be shifted to devs and PMs, though usually with mixed results.

For Mozilla, axing quality and security first is a bad look when those are crucial aspects of a privacy-first company value.

replies(7): >>22058757 #>>22058762 #>>22058953 #>>22059007 #>>22059065 #>>22059192 #>>22060314 #
crazypython ◴[] No.22059007[source]
Mozilla uses AFL, which is a genetic algorithm that tests code paths. They are also transitioning to Rust, which will give them a much bigger safety guarantee over most of their code and a much smaller audit surface for the rest.
replies(4): >>22059053 #>>22059115 #>>22059126 #>>22059331 #
SEJeff ◴[] No.22059126[source]
American Fuzzy Lop? It's a fuzzer. I've never heard of a fuzzer described as a genetic algorithm that tests code paths, but that is technically correct.

A fuzzer is not going to replace unit tests or good SDLC, which often involves QA.

replies(1): >>22061343 #
1. craftinator ◴[] No.22061343[source]
GA's are a good generative path for fuzzers; at a low level that's exactly what they do.