Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: regression test for #5462 #6286

Merged
merged 6 commits into from
Oct 11, 2024
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
7 changes: 7 additions & 0 deletions test_programs/execution_success/regression_5462/Nargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[package]
name = "regression_5462"
type = "bin"
authors = [""]
compiler_version = ">=0.35.0"

[dependencies]
11 changes: 11 additions & 0 deletions test_programs/execution_success/regression_5462/src/main.nr
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
fn main() {
let empty_slice: [u8] = &[];

if empty_slice != &[] {
let _ = empty_slice.pop_front();
}

if empty_slice.len() != 0 {
let _ = empty_slice.pop_front();
}
}
6 changes: 4 additions & 2 deletions test_programs/execution_success/slice_regex/src/main.nr
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ fn main() {
let result = three_ones_regex.match("1111".as_bytes().as_slice());
println(result);
assert_eq(result, Match { succeeded: true, match_ends: 3, leftover: &[] });
// TODO(https://github.com/noir-lang/noir/issues/5462): re-enable these cases and complete the test using array_regex below
// TODO(https://github.com/noir-lang/noir/issues/6285): re-enable these cases and complete the test using array_regex below
//
// // 1*
// let ones_regex: Star<str<1>, 5> = Star { inner: "1" };
Expand Down Expand Up @@ -279,7 +279,9 @@ fn main() {
// });
}

// array_regex: use to complete test once https://github.com/noir-lang/noir/issues/5462 is resolved
// TODO
// array_regex execution_success test:
// use to complete test once https://github.com/noir-lang/noir/issues/6285 is resolved
//
// // offset <= len <= N
// struct Bvec<T, let N: u32> {
Expand Down
Loading