From d2ba3934b91816398c7d0cdc706363cdcc08e356 Mon Sep 17 00:00:00 2001 From: yash Date: Mon, 13 Oct 2025 17:28:51 +0530 Subject: [PATCH] test workflow --- .../frameworks/noir/circuits/test/Nargo.toml | 6 ++++++ .../frameworks/noir/circuits/test/src/main.nr | 11 +++++++++++ 2 files changed, 17 insertions(+) create mode 100644 benchmarking-suite/frameworks/noir/circuits/test/Nargo.toml create mode 100644 benchmarking-suite/frameworks/noir/circuits/test/src/main.nr diff --git a/benchmarking-suite/frameworks/noir/circuits/test/Nargo.toml b/benchmarking-suite/frameworks/noir/circuits/test/Nargo.toml new file mode 100644 index 00000000..0e6c7b44 --- /dev/null +++ b/benchmarking-suite/frameworks/noir/circuits/test/Nargo.toml @@ -0,0 +1,6 @@ +[package] +name = "test" +type = "bin" +authors = [""] + +[dependencies] \ No newline at end of file diff --git a/benchmarking-suite/frameworks/noir/circuits/test/src/main.nr b/benchmarking-suite/frameworks/noir/circuits/test/src/main.nr new file mode 100644 index 00000000..3c30bf08 --- /dev/null +++ b/benchmarking-suite/frameworks/noir/circuits/test/src/main.nr @@ -0,0 +1,11 @@ +fn main(x: Field, y: pub Field) { + assert(x != y); +} + +#[test] +fn test_main() { + main(1, 2); + + // Uncomment to make test fail + // main(1, 1); +}