-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
251 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,27 @@ | ||
# ORZCC | ||
# OrzCC | ||
|
||
Yet another compiler infrastructure. | ||
|
||
## Getting Started | ||
|
||
Just install rust toolchain and build/test/run using cargo. | ||
|
||
## Testing | ||
|
||
Install [cargo-tarpaulin](https://crates.io/crates/cargo-tarpaulin) to get test coverage. | ||
|
||
```shell | ||
cargo install cargo-tarpaulin | ||
``` | ||
|
||
Note that because of the rustc version, you may need to install with `--locked` flag or nightly toolchain. | ||
|
||
```shell | ||
cargo install cargo-tarpaulin --locked | ||
``` | ||
|
||
Then run the following command to get test coverage. | ||
|
||
```shell | ||
cargo tarpaulin | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters