Skip to content

Commit

Permalink
chore: regression test for #5462
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeljklein committed Oct 11, 2024
1 parent b54ed26 commit e596612
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[package]
name = "regression_test_5462"
type = "bin"
authors = [""]
compiler_version = ">=0.35.0"

[dependencies]
11 changes: 11 additions & 0 deletions test_programs/execution_success/regression_test_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

0 comments on commit e596612

Please sign in to comment.