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 9b497f4 commit 3f88de8Copy full SHA for 3f88de8
[refs]
@@ -1,2 +1,2 @@
1
---
2
-refs/heads/master: a40116b3980610c28f97740d4a40ef79bf89a59a
+refs/heads/master: 9adacfb26a32090435e84067a2a62d32d2ce01f1
trunk/src/test/run-pass/lib-path.rs
@@ -0,0 +1,17 @@
+// xfail-stage0
+
3
+// Testing a few of the path manipuation functions
4
5
+use std;
6
7
+import std::fs;
8
+import std::os;
9
10
+fn main() {
11
+ assert(!fs::path_is_absolute("test-path"));
12
13
+ log "Current working directory: " + os::getcwd();
14
15
+ log fs::make_absolute("test-path");
16
+ log fs::make_absolute("/usr/bin");
17
+}
0 commit comments