@@ -4,9 +4,9 @@ import std::io;
44import std:: str;
55import std:: result;
66
7- #[ cfg( target_os = "linux" ) ]
8- #[ cfg( target_os = "win32" ) ]
7+ // FIXME (726)
98#[ test]
9+ #[ ignore( cfg( target_os = "macos" ) ) ]
1010fn test_simple ( ) {
1111 let tmpfile: str = "test/run-pass/lib-io-test-simple.tmp" ;
1212 log tmpfile;
@@ -23,12 +23,6 @@ fn test_simple() {
2323 assert ( str:: eq ( frood, frood2) ) ;
2424}
2525
26- // FIXME (726)
27- #[ cfg( target_os = "macos" ) ]
28- #[ test]
29- #[ ignore]
30- fn test_simple ( ) { }
31-
3226#[ test]
3327fn file_reader_not_exist ( ) {
3428 alt io:: file_reader ( "not a file" ) {
@@ -39,9 +33,9 @@ fn file_reader_not_exist() {
3933 }
4034}
4135
42- #[ cfg( target_os = "linux" ) ]
43- #[ cfg( target_os = "win32" ) ]
4436#[ test]
37+ // FIXME (726)
38+ #[ ignore( cfg( target_os = "macos" ) ) ]
4539fn file_buf_writer_bad_name ( ) {
4640 alt io:: file_buf_writer ( "/?" , [ ] ) {
4741 result:: err ( e) {
@@ -51,15 +45,9 @@ fn file_buf_writer_bad_name() {
5145 }
5246}
5347
54- // FIXME (726)
55- #[ cfg( target_os = "macos" ) ]
56- #[ test]
57- #[ ignore]
58- fn file_buf_writer_bad_name ( ) { }
59-
60- #[ cfg( target_os = "linux" ) ]
61- #[ cfg( target_os = "win32" ) ]
6248#[ test]
49+ // FIXME (726)
50+ #[ ignore( cfg( target_os = "macos" ) ) ]
6351fn buffered_file_buf_writer_bad_name ( ) {
6452 alt io:: buffered_file_buf_writer ( "/?" ) {
6553 result:: err ( e) {
@@ -68,9 +56,3 @@ fn buffered_file_buf_writer_bad_name() {
6856 result:: ok ( _) { fail; }
6957 }
7058}
71-
72- // FIXME (726)
73- #[ cfg( target_os = "macos" ) ]
74- #[ test]
75- #[ ignore]
76- fn buffered_file_buf_writer_bad_name ( ) { }
0 commit comments