Skip to content
Merged
Show file tree
Hide file tree
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
38 changes: 0 additions & 38 deletions Cargo.lock

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

1 change: 0 additions & 1 deletion crates/acvm_backend_barretenberg/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ reqwest = { version = "0.11.16", default-features = false, features = [
] }

[dev-dependencies]
serial_test = "2.0.0"
test-binary = "3.0.1"

[build-dependencies]
Expand Down
1 change: 0 additions & 1 deletion crates/acvm_backend_barretenberg/src/cli/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ impl ContractCommand {
}

#[test]
#[serial_test::serial]
fn contract_command() {
use tempfile::tempdir;

Expand Down
1 change: 0 additions & 1 deletion crates/acvm_backend_barretenberg/src/cli/gates.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ impl GatesCommand {
}

#[test]
#[serial_test::serial]
fn gate_command() {
let backend = crate::get_mock_backend();
let bytecode_path = PathBuf::from("./src/1_mul.bytecode");
Expand Down
1 change: 0 additions & 1 deletion crates/acvm_backend_barretenberg/src/cli/info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ impl InfoCommand {
}

#[test]
#[serial_test::serial]
fn info_command() {
use acvm::acir::circuit::black_box_functions::BlackBoxFunc;
use acvm::acir::circuit::opcodes::{BlackBoxFuncCall, Opcode};
Expand Down
1 change: 0 additions & 1 deletion crates/acvm_backend_barretenberg/src/cli/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ pub(crate) use verify::VerifyCommand;
pub(crate) use write_vk::WriteVkCommand;

#[test]
#[serial_test::serial]
fn no_command_provided_works() {
// This is a simple test to check that the binaries work

Expand Down
1 change: 0 additions & 1 deletion crates/acvm_backend_barretenberg/src/cli/prove.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ impl ProveCommand {
}

#[test]
#[serial_test::serial]
fn prove_command() {
use tempfile::tempdir;

Expand Down
1 change: 0 additions & 1 deletion crates/acvm_backend_barretenberg/src/cli/verify.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ impl VerifyCommand {
}

#[test]
#[serial_test::serial]
fn verify_command() {
use tempfile::tempdir;

Expand Down
1 change: 0 additions & 1 deletion crates/acvm_backend_barretenberg/src/cli/write_vk.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ impl WriteVkCommand {
}

#[test]
#[serial_test::serial]
fn write_vk_command() {
use tempfile::tempdir;

Expand Down
1 change: 0 additions & 1 deletion crates/acvm_backend_barretenberg/src/smart_contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ mod tests {
use crate::get_mock_backend;

#[test]
#[serial_test::serial]
fn test_smart_contract() {
let expression = &(Witness(1) + Witness(2)) - &Expression::from(Witness(3));
let constraint = Opcode::Arithmetic(expression);
Expand Down