From a5df8bc035bfcd77c8833fef3eb99f9068ff6bb8 Mon Sep 17 00:00:00 2001 From: Leo Date: Tue, 17 Dec 2024 10:50:58 +0100 Subject: [PATCH] Lift some tests from nightly to pr-tests (#2216) --- .github/workflows/nightly_tests_list.txt | 4 ---- riscv/Cargo.toml | 3 +-- riscv/tests/riscv.rs | 2 -- 3 files changed, 1 insertion(+), 8 deletions(-) diff --git a/.github/workflows/nightly_tests_list.txt b/.github/workflows/nightly_tests_list.txt index d8892547e3..69f6cf192e 100644 --- a/.github/workflows/nightly_tests_list.txt +++ b/.github/workflows/nightly_tests_list.txt @@ -5,7 +5,6 @@ test(=instruction_tests::and) | test(=instruction_tests::andi) | test(=instruction_tests::beq) | test(=instruction_tests::bge) | -test(=instruction_tests::bgeu) | test(=instruction_tests::blt) | test(=instruction_tests::bltu) | test(=instruction_tests::bne) | @@ -19,7 +18,6 @@ test(=instruction_tests::lhu) | test(=instruction_tests::lrsc) | test(=instruction_tests::lw) | test(=instruction_tests::mul) | -test(=instruction_tests::mulh) | test(=instruction_tests::mulhsu) | test(=instruction_tests::mulhu) | test(=instruction_tests::or) | @@ -37,7 +35,6 @@ test(=instruction_tests::sltiu) | test(=instruction_tests::sltu) | test(=instruction_tests::srai) | test(=instruction_tests::srl) | -test(=instruction_tests::srli) | test(=instruction_tests::sub) | test(=instruction_tests::sw) | test(=instruction_tests::xor) | @@ -51,7 +48,6 @@ test(=memfuncs) | test(=password) | test(=print) | test(=runtime_affine_256) | -test(=runtime_ec_add) | test(=runtime_ec_double) | test(=runtime_modmul_256) | test(=runtime_poseidon_gl) | diff --git a/riscv/Cargo.toml b/riscv/Cargo.toml index f297823512..c16cd48c42 100644 --- a/riscv/Cargo.toml +++ b/riscv/Cargo.toml @@ -9,11 +9,10 @@ homepage = { workspace = true } repository = { workspace = true } [features] -default = [] # complex-tests is disabled by default +default = [] # features below only affects tests # not sure this is the best approach -complex-tests = [] estark-polygon = ["powdr-pipeline/estark-polygon"] plonky3 = ["powdr-pipeline/plonky3"] diff --git a/riscv/tests/riscv.rs b/riscv/tests/riscv.rs index 30712a8352..06e884c06b 100644 --- a/riscv/tests/riscv.rs +++ b/riscv/tests/riscv.rs @@ -273,10 +273,8 @@ fn runtime_modmul_256() { mstore(0, 666) return(0, 32) */ -#[cfg(feature = "complex-tests")] static BYTECODE: &str = "61029a60005260206000f3"; -#[cfg(feature = "complex-tests")] #[ignore = "Too slow"] #[test] fn evm() {