Skip to content

Commit 9e7f515

Browse files
committed
Enable Buffer::processed tests again
Rust issue #71397 (rust-lang/rust#71397) has been resolved.
1 parent 623a8b5 commit 9e7f515

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/buffer/tests.rs

-4
Original file line numberDiff line numberDiff line change
@@ -211,15 +211,13 @@ fn buffer_reset() {
211211

212212
#[test]
213213
#[should_panic(expected = "marking bytes as processed beyond read range")]
214-
#[ignore = "problem in libbacktrace, see https://github.com/rust-lang/rust/issues/71397"]
215214
fn marking_processed_beyond_read_range() {
216215
let mut buf = Buffer::new();
217216
buf.processed(1);
218217
}
219218

220219
#[test]
221220
#[should_panic(expected = "marking bytes as processed beyond read range")]
222-
#[ignore = "problem in libbacktrace, see https://github.com/rust-lang/rust/issues/71397"]
223221
fn marking_processed_beyond_read_range_after_reset() {
224222
let mut buf = Buffer::new();
225223

@@ -436,7 +434,6 @@ fn write_buffer_processed_original_empty() {
436434

437435
#[test]
438436
#[should_panic(expected = "marking bytes as processed beyond read range")]
439-
#[ignore = "problem in libbacktrace, see https://github.com/rust-lang/rust/issues/71397"]
440437
fn marking_processed_write_buffer_beyond_read_range() {
441438
let mut buf = Buffer::new();
442439
let (original_bytes, mut wbuf) = buf.split_write(20);
@@ -446,7 +443,6 @@ fn marking_processed_write_buffer_beyond_read_range() {
446443

447444
#[test]
448445
#[should_panic(expected = "marking bytes as processed beyond read range")]
449-
#[ignore = "problem in libbacktrace, see https://github.com/rust-lang/rust/issues/71397"]
450446
fn marking_processed_write_buffer_beyond_read_range_after_reset() {
451447
let mut buf = Buffer::new();
452448
let bytes = &[1, 2, 3];

0 commit comments

Comments
 (0)