We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91989d4 commit a99fac3Copy full SHA for a99fac3
[refs]
@@ -1,2 +1,2 @@
1
---
2
-refs/heads/master: 5566e0c3f1cf00c85cbbc081faa7519be674d3b4
+refs/heads/master: ed25dfe2ca2008dc1b52edf4246744e60f6f369f
trunk/src/test/run-pass/lib-io.rs
@@ -4,6 +4,8 @@ use std;
4
import std::io;
5
import std::str;
6
7
+#[cfg(target_os = "linux")]
8
+#[cfg(target_os = "win32")]
9
fn test_simple() {
10
let str tmpfile = "test/run-pass/lib-io-test-simple.tmp";
11
log tmpfile;
@@ -20,6 +22,10 @@ fn test_simple() {
20
22
assert (str::eq(frood, frood2));
21
23
}
24
25
+// FIXME (726)
26
+#[cfg(target_os = "macos")]
27
+fn test_simple() {}
28
+
29
fn main() {
30
test_simple();
31
0 commit comments