| Re: [cdt-dev] proposal for side-stepping known test failures |
The CDT tests appear to have known failures--more than just a handful. This makes it very difficult to detect new failures caused by new changes.
Â
Iâd like to wrap known failures as follows:
Â
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ if (System.getProperty("cdt.skip.known.test.failures") == null) {
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ // the failing test
ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ }
Â
This will allow me (and others) to get a clean test run before starting on a set of changes. I can then run the tests again after my changes and immediately find out if Iâve broken anything. Right now, Iâd have to manually/visually filter out dozens of known failures from the results, which is very tedious, time consuming and error prone. This is much better than simply commenting out broken tests and putting a âTODOâ, as it actually leaves the broken tests active in the codebase.
Â
Objections?
John
_______________________________________________
cdt-dev mailing list
cdt-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/cdt-dev