File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -590,15 +590,15 @@ mod tests {
590
590
l. assert_consistent ( ) ; assert l. pop ( ) . get ( ) == 3 ;
591
591
l. assert_consistent ( ) ; assert l. is_empty ( ) ;
592
592
}
593
- #[ test] #[ should_fail]
593
+ #[ test] #[ should_fail] # [ ignore ( cfg ( windows ) ) ]
594
594
fn test_asymmetric_link ( ) {
595
595
let l = create :: < int > ( ) ;
596
596
let one = l. push_n ( 1 ) ;
597
597
let two = l. push_n ( 2 ) ;
598
598
two. prev = none;
599
599
l. assert_consistent ( ) ;
600
600
}
601
- #[ test] #[ should_fail]
601
+ #[ test] #[ should_fail] # [ ignore ( cfg ( windows ) ) ]
602
602
fn test_cyclic_list ( ) {
603
603
let l = create :: < int > ( ) ;
604
604
let one = l. push_n ( 1 ) ;
@@ -608,32 +608,32 @@ mod tests {
608
608
one. prev = some ( three) ;
609
609
l. assert_consistent ( ) ;
610
610
}
611
- #[ test] #[ should_fail]
611
+ #[ test] #[ should_fail] # [ ignore ( cfg ( windows ) ) ]
612
612
fn test_headless ( ) {
613
613
create :: < int > ( ) . head ( ) ;
614
614
}
615
- #[ test] #[ should_fail]
615
+ #[ test] #[ should_fail] # [ ignore ( cfg ( windows ) ) ]
616
616
fn test_insert_already_present_before ( ) {
617
617
let l = create :: < int > ( ) ;
618
618
let one = l. push_n ( 1 ) ;
619
619
let two = l. push_n ( 2 ) ;
620
620
l. insert_n_before ( two, one) ;
621
621
}
622
- #[ test] #[ should_fail]
622
+ #[ test] #[ should_fail] # [ ignore ( cfg ( windows ) ) ]
623
623
fn test_insert_already_present_after ( ) {
624
624
let l = create :: < int > ( ) ;
625
625
let one = l. push_n ( 1 ) ;
626
626
let two = l. push_n ( 2 ) ;
627
627
l. insert_n_after ( one, two) ;
628
628
}
629
- #[ test] #[ should_fail]
629
+ #[ test] #[ should_fail] # [ ignore ( cfg ( windows ) ) ]
630
630
fn test_insert_before_orphan ( ) {
631
631
let l = create :: < int > ( ) ;
632
632
let one = create_node ( 1 ) ;
633
633
let two = create_node ( 2 ) ;
634
634
l. insert_n_before ( one, two) ;
635
635
}
636
- #[ test] #[ should_fail]
636
+ #[ test] #[ should_fail] # [ ignore ( cfg ( windows ) ) ]
637
637
fn test_insert_after_orphan ( ) {
638
638
let l = create :: < int > ( ) ;
639
639
let one = create_node ( 1 ) ;
You can’t perform that action at this time.
0 commit comments