]> git.lizzy.rs Git - rust.git/commitdiff
deal with windows
authorDaniel Micay <danielmicay@gmail.com>
Mon, 24 Jun 2013 01:58:45 +0000 (21:58 -0400)
committerDaniel Micay <danielmicay@gmail.com>
Mon, 24 Jun 2013 05:35:12 +0000 (01:35 -0400)
src/test/run-pass/deriving-meta-empty-trait-list.rs
src/test/run-pass/issue-4241.rs
src/test/run-pass/issue-4541.rs

index 8e7afffaf0dbb1e700668d4618f1545766fbe5de..955e02d4d2d896270d71dacd21a634049b26b715 100644 (file)
@@ -10,6 +10,8 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
+// xfail-fast
+
 #[deriving]   //~ WARNING empty trait list in `deriving`
 struct Foo;
 
index 720ce7a2c27faf77faf729c161c59cb176518ae9..5b668d710ddeb5180f5b62446be3d91586d150cb 100644 (file)
@@ -8,6 +8,8 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
+// xfail-fast
+
 extern mod extra;
 
 use extra::net::tcp::TcpSocketBuf;
index 4d59ea0fba32ccc6f54c544dc45ec25441019a1d..7b80974313e378a86d62c35062d3f3bb5d5a1941 100644 (file)
@@ -11,7 +11,7 @@
 use std::io;
 
 fn parse_args() -> ~str {
-    let args = std::os::args();
+    let args = ::std::os::args();
     let mut n = 0;
 
     while n < args.len() {