about summary refs log tree commit diff
path: root/src/test/run-make-fulldeps/exit-code/Makefile
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-11/+0
2022-08-23Diagnose missing includes in run-make testsTomasz Miąsko-1/+1
2018-07-18rustc: distinguish compilation failure from ICEAndy Russell-0/+11
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.