Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 3 additions & 12 deletions build_system/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,9 @@ static REGEX: CargoProject = CargoProject::new(REGEX_REPO.source_dir(), "regex_t
pub(crate) static GRAVIOLA_REPO: GitRepo = GitRepo::github(
"ctz",
"graviola",
"c779b83cfd7114c4802293700c92cfb5e05cb4b7",
"7763d0cc617d6f5f66c3bc0fe9b3d8581d781b6a", // v0.4.1
&["thirdparty/cavp", "thirdparty/wycheproof"],
"e0925ceb21a56101",
"7fa5a75b9fb1ac40",
"graviola",
);

Expand Down Expand Up @@ -231,16 +231,7 @@ const EXTENDED_SYSROOT_SUITE: &[TestCase] = &[
test_cmd.env("GRAVIOLA_CPU_DISABLE_avx512bw", "1");
test_cmd.env("GRAVIOLA_CPU_DISABLE_avx512vl", "1");

test_cmd.args([
"-p",
"graviola",
"--lib",
"--",
"-q",
// FIXME: Disable AVX-512 until intrinsics are supported.
"--skip",
"check_counter512",
]);
test_cmd.args(["-p", "graviola", "--lib", "--", "-q"]);
spawn_and_wait(test_cmd);
} else {
eprintln!("Cross-Compiling: Not running tests");
Expand Down
Loading