diff --git a/S09-typed-arrays/native-int.t b/S09-typed-arrays/native-int.t index 5dce5f0455..8fa778cd6b 100644 --- a/S09-typed-arrays/native-int.t +++ b/S09-typed-arrays/native-int.t @@ -235,7 +235,6 @@ for flat @int,@uint -> $T { @arr = (); @arr[4] = 22; - #?rakudo.jvm todo 'RT #127756' is @arr.join(":"), "0:0:0:0:22", "does emptying a $t array really empty"; my @holes := array[$T].new; diff --git a/S09-typed-arrays/native-num.t b/S09-typed-arrays/native-num.t index 8e5b55cb65..3c82a794e5 100644 --- a/S09-typed-arrays/native-num.t +++ b/S09-typed-arrays/native-num.t @@ -241,7 +241,6 @@ for @num -> $T { @arr = (); @arr[4] = 22.1e0; - #?rakudo.jvm todo 'RT #127756' ok @arr.join(":").starts-with("0:0:0:0:22.1"), # num32 accurracy issues "does emptying a $t array really empty"; diff --git a/S09-typed-arrays/native-str.t b/S09-typed-arrays/native-str.t index 66bf1ca1ac..126c7e5446 100644 --- a/S09-typed-arrays/native-str.t +++ b/S09-typed-arrays/native-str.t @@ -230,7 +230,6 @@ is @arr.join(":"), "a:b:c:d:e", "does join a $t array"; @arr = (); @arr[4] = "z"; -#?rakudo.jvm todo 'RT #127756' is @arr.join(":"), "::::z", "does emptying a $t array really empty"; my @holes := array[$T].new; diff --git a/S09-typed-arrays/native.t b/S09-typed-arrays/native.t index 5411eabb83..f2c8c62856 100644 --- a/S09-typed-arrays/native.t +++ b/S09-typed-arrays/native.t @@ -67,25 +67,21 @@ subtest 'no rogue leftovers when resizing natives' => { plan 5; { my int @a = 1..10; @a = 1..5; @a[50] = 1337; - #?rakudo.jvm todo 'RT #127756' is-deeply @a, array[int].new(|(1..5), |(0 xx 45), 1337), 'native int array, large resize, larger than original size'; } { my int @a = 1..100; @a = 1..5; @a[50] = 1337; - #?rakudo.jvm todo 'RT #127756' is-deeply @a, array[int].new(|(1..5), |(0 xx 45), 1337), 'native int array, large resize, smaller than original size'; } { my num @a = 1e0..5e0; @a = 1e0; @a[3] = 1337e0; - #?rakudo.jvm todo 'RT #127756' is-deeply @a, array[num].new(1e0, 0e0, 0e0, 1337e0), 'native num array, small resize, smaller than original size'; } { my num @a = 1e0..3e0; @a = 1e0; @a[5] = 1337e0; - #?rakudo.jvm todo 'RT #127756' is-deeply @a, array[num].new(1e0, 0e0, 0e0, 0e0, 0e0, 1337e0), 'native num array, small resize, larger than original size'; } @@ -94,7 +90,6 @@ subtest 'no rogue leftovers when resizing natives' => { @arr.unshift: 2; @arr = (); @arr[4] = 3; - #?rakudo.jvm todo 'RT #127756' is-deeply @arr, array[int].new(0, 0, 0, 0, 3), 'contents + unshift + clear clears old elements'; } diff --git a/S32-container/buf.t b/S32-container/buf.t index 321f9d65e7..cbacbdc572 100644 --- a/S32-container/buf.t +++ b/S32-container/buf.t @@ -190,7 +190,6 @@ subtest '.gist shows only first 100 els' => { } # RT #127756 -#?rakudo.jvm todo 'RT #127756' is-deeply Buf.allocate(10, (1,2,3)).reallocate(0).reallocate(5), Buf.new(0, 0, 0, 0, 0), 'resized Bufs do not have leftover values';