forked from Rust-GCC/rusttest-to-dg
-
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.
Update README with invocation script usage
- Loading branch information
1 parent
34f75bd
commit e272369
Showing
1 changed file
with
16 additions
and
0 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,19 @@ | ||
# rusttest-to-dg | ||
|
||
Converts `rustc` testcases into dejagnu testcases for `gccrs` | ||
|
||
# Usage | ||
|
||
This tool was invoked by the script [run](./run.sh). Furthermore, we need the rustc and gccrs source code to be downloaded on the system. And add their paths to the environment variables `GCCRS_PATH`, `RUST_PATH` and `RUSTTEST_TO_DG_PATH` | ||
|
||
```bash | ||
export GCCRS_PATH=/path/to/gccrs | ||
export RUST_PATH=/path/to/rust | ||
export RUSTTEST_TO_DG_PATH=/path/to/rusttest-to-dg | ||
``` | ||
|
||
Then, simply run the script [run](./run.sh) | ||
|
||
```bash | ||
bash run.sh | ||
``` |