about summary refs log tree commit diff
path: root/src/test/run-make-fulldeps/exit-code
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-24/+0
2022-08-23Diagnose missing includes in run-make testsTomasz Miąsko-1/+1
2020-07-30intra_doc_resolution_failures -> broken_intra_doc_linksManish Goregaokar-1/+1
2020-07-30Rename to intra_doc_resolution_failuresManish Goregaokar-1/+1
2020-07-29Rename usage of intra_doc_link_resolution_failureManish Goregaokar-1/+1
2018-12-25Remove licensesMark Rousskov-30/+0
2018-08-04fix exit-code test so the lint fires againQuietMisdreavus-1/+1
2018-07-18rustc: distinguish compilation failure from ICEAndy Russell-0/+54
This commit changes the exit status of rustc to 1 in the presence of compilation errors. In the event of an unexpected panic (ICE) the standard panic error exit status of 101 remains. A run-make test is added to ensure that the exit code does not regress, and compiletest is updated to check for an exit status of 1 or 101, depending on the mode and suite. This is a breaking change for custom drivers. Fixes #51971.