Skip to content
This repository was archived by the owner on Apr 28, 2025. It is now read-only.

Commit 4415fd1

Browse files
committed
Move musl tests to test-framework crate
Signed-off-by: Benjamin Schultzer <benjamin@schultzer.com>
1 parent 04a276f commit 4415fd1

File tree

9 files changed

+685
-475
lines changed

9 files changed

+685
-475
lines changed

Cargo.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,14 @@ edition = "2018"
1515
default = ['stable']
1616
stable = []
1717

18-
# Generate tests which are random inputs and the outputs are calculated with
19-
# musl libc.
20-
musl-reference-tests = ['rand']
21-
2218
# Used checked array indexing instead of unchecked array indexing in this
2319
# library.
2420
checked = []
2521

2622
[workspace]
2723
members = [
2824
"crates/compiler-builtins-smoke-test",
25+
"crates/libm-test"
2926
]
3027

3128
[dev-dependencies]
@@ -35,3 +32,4 @@ paste = "0.1.5"
3532

3633
[build-dependencies]
3734
rand = { version = "0.6.5", optional = true }
35+
libm-test = { version = "0.*", path = "./crates/libm-test" }

0 commit comments

Comments
 (0)