File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
branches/snap-stage3/src/libstd/rt/io Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
refs/heads/master: 2d28d645422c1617be58c8ca7ad9a457264ca850
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
- refs/heads/snap-stage3: fb2765eebd33fbc0218c51313b629a079a09d9fc
4
+ refs/heads/snap-stage3: 1120f8c1e57b7b30134d670dd1dfc18c6444c15f
5
5
refs/heads/try: 7b78b52e602bb3ea8174f9b2006bff3315f03ef9
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
Original file line number Diff line number Diff line change @@ -750,8 +750,6 @@ mod test {
750
750
#[ should_fail]
751
751
#[ ignore( cfg( windows) ) ]
752
752
fn push_bytes_fail_reset_len ( ) {
753
- use unstable:: finally:: Finally ;
754
-
755
753
// push_bytes unsafely sets the vector length. This is testing that
756
754
// upon failure the length is reset correctly.
757
755
let mut reader = MockReader :: new ( ) ;
@@ -773,7 +771,8 @@ mod test {
773
771
reader. push_bytes ( & mut * buf, 4 ) ;
774
772
} ) . finally {
775
773
// NB: Using rtassert here to trigger abort on failure since this is a should_fail test
776
- rtassert ! ( * buf == ~[ 8 , 9 , 10 ] ) ;
774
+ // FIXME: #7049 This fails because buf is still borrowed
775
+ //rtassert!(*buf == ~[8, 9, 10]);
777
776
}
778
777
}
779
778
You can’t perform that action at this time.
0 commit comments