Skip to content

Commit

Permalink
Cleanup boa_tester (#2440)
Browse files Browse the repository at this point in the history
Just some quality changes to improve the maintainability of the tester:

- Replaces `anyhow` with `color_eyre` to have a better output on errors/panics.
- Changes the ignore file to a TOML file and replaces all parsing logic with the `toml` crate.
- Adds a `ignored` field on all `Test`s to simplify run logic.
- Replaces the global `IGNORED` with an `ignored` argument on the CLI.
  • Loading branch information
jedel1043 committed Nov 17, 2022
1 parent ace098f commit 9c7b4d5
Show file tree
Hide file tree
Showing 8 changed files with 550 additions and 400 deletions.
199 changes: 192 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion boa_tester/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,5 @@ once_cell = "1.16.0"
colored = "2.0.0"
fxhash = "0.2.1"
rayon = "1.5.3"
anyhow = "1.0.66"
toml = "0.5.9"
color-eyre = "0.6.2"
Loading

0 comments on commit 9c7b4d5

Please sign in to comment.