Skip to content

Commit 3f88de8

Browse files
author
Eric Holk
committed
---
yaml --- r: 3216 b: refs/heads/master c: 9adacfb h: refs/heads/master v: v3
1 parent 9b497f4 commit 3f88de8

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
refs/heads/master: a40116b3980610c28f97740d4a40ef79bf89a59a
2+
refs/heads/master: 9adacfb26a32090435e84067a2a62d32d2ce01f1

trunk/src/test/run-pass/lib-path.rs

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// xfail-stage0
2+
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

Comments
 (0)