aboutsummaryrefslogtreecommitdiff
path: root/test/cases/compile_log.0.zig
AgeCommit message (Collapse)Author
2024-11-11test: remove old-style incremental cases, add a few new incremental casesmlugg
These cases have been disabled for a while, and we have transitioned to using a compact file format for incremental test cases. I was originally planning to port all of these cases, but the vast majority aren't testing anything interesting, so it wasn't worth the effort. I did look through each one; anything interesting being tested has been extracted into a new case in `test/incremental/`. Two of the new tests are currently failing with the self-hosted ELF linker, and thus are currently only enabled with the C backend. Resolves: #12844
2023-11-19test: update cases to silence 'var is never mutated' errorsmlugg
2023-09-19write function types consistently with a space before `fn` keywordr00ster91
Currently, the compiler (like @typeName) writes it `fn(...) Type` but zig fmt writes it `fn (...) Type` (notice the space after `fn`). This inconsistency is now resolved and function types are consistently written the zig fmt way. Before this there were more `fn (...) Type` occurrences than `fn(...) Type` already.
2023-03-15test-cases: add missing compile log outputAndrew Kelley
The new testing harness is not bound by previous limitations; it can now test compile log output as well.
2022-06-30move passing stage1 compile error tests to stage2Veikka Tuominen
2022-05-04test: move compile errors and incremental tests into common dirJakub Konka