https://github.com/rust-lang/glacier
A big 'ol pile of ICE.
https://github.com/rust-lang/glacier
Last synced: 5 months ago
JSON representation
A big 'ol pile of ICE.
- Host: GitHub
- URL: https://github.com/rust-lang/glacier
- Owner: rust-lang
- License: apache-2.0
- Archived: true
- Created: 2015-10-23T13:16:11.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-05-12T03:06:25.000Z (about 1 year ago)
- Last Synced: 2024-09-29T22:42:07.266Z (9 months ago)
- Language: Rust
- Size: 2.96 MB
- Stars: 290
- Watchers: 15
- Forks: 63
- Open Issues: 37
-
Metadata Files:
- Readme: README.md
- License: LICENSE-APACHE
Awesome Lists containing this project
README
# Glacier
A big ‘ol pile of ICE.
[](https://github.com/rust-lang/glacier/actions)
This repository is used to test internal compiler errors (also known as ICEs)
in [Rust]. An ICE means that something went wrong, something unexpected. As
such, sometimes, ICEs get randomly fixed. A compiler refactoring will remove
the odd code path, even if the point of the change wasn’t to fix the bug.[Rust]: https://github.com/rust-lang/rust
As such, this repository is a collection of these bugs, and it runs on Rust
nightly, once a day, through GitHub Actions. If any of the ICEs stop happening, the build
will fail, and we can close the associated bug.## Helping out
Contributing to Glacier is fairly easy:
1. Check out [this list][ices] of bugs on the Rust issue tracker.
2. Pick one.
3. Create a file in `ices/` with the same number as the issue reporting the ICE.
4. Copy the code that causes the ICE into your new file.
5. (optional) Verify it works by running `rustup update nightly`, then
`cargo run $ISSUE_NUMBER` to run your ICE.
6. Send a pull request!Note: Running this on Windows may give false positives and report some ICEs as fixed,
use either WSL or Linux for better accuracy.[ices]: https://github.com/rust-lang/rust/issues?q=is%3Aissue+is%3Aopen+label%3AI-ICE+-label%3AE-needs-mcve+-label%3Aglacier+-label%3Arequires-debug-assertions
## License
MIT/Apache2, just like Rust.