-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Factored out test program and fuzzing features; core crate now only d…
…epends on smallvec and log.
- Loading branch information
Showing
5 changed files
with
33 additions
and
10 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[package] | ||
name = "regalloc2-test" | ||
version = "0.0.1" | ||
authors = ["Chris Fallin <chris@cfallin.org>", "Mozilla SpiderMonkey Developers"] | ||
edition = "2018" | ||
license = "Apache-2.0 WITH LLVM-exception AND MPL-2.0" | ||
description = "small test driver for benchmarking regalloc2" | ||
repository = "https://github.com/bytecodealliance/regalloc2" | ||
|
||
[dependencies] | ||
regalloc2 = { version = "*", path = "../", features = ["fuzzing"] } | ||
|
||
# Keep this in sync with libfuzzer_sys's crate version: | ||
arbitrary = { version = "^0.4.6" } | ||
rand = { version = "0.8" } | ||
rand_chacha = { version = "0.3" } | ||
env_logger = { version = "*" } | ||
|
||
[profile.release] | ||
debug = true |
File renamed without changes.