~ubuntu-branches/ubuntu/vivid/emscripten/vivid

« back to all changes in this revision

Viewing changes to tests/unistd/access.out

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2013-05-02 13:11:51 UTC
  • Revision ID: package-import@ubuntu.com-20130502131151-q8dvteqr1ef2x7xz
Tags: upstream-1.4.1~20130504~adb56cb
ImportĀ upstreamĀ versionĀ 1.4.1~20130504~adb56cb

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
F_OK(/readable): 0
 
2
errno: 0
 
3
R_OK(/readable): 0
 
4
errno: 0
 
5
X_OK(/readable): 0
 
6
errno: 0
 
7
W_OK(/readable): -1
 
8
errno: 13
 
9
 
 
10
F_OK(/writeable): 0
 
11
errno: 0
 
12
R_OK(/writeable): -1
 
13
errno: 13
 
14
X_OK(/writeable): -1
 
15
errno: 13
 
16
W_OK(/writeable): 0
 
17
errno: 0
 
18
 
 
19
F_OK(/allaccess): 0
 
20
errno: 0
 
21
R_OK(/allaccess): 0
 
22
errno: 0
 
23
X_OK(/allaccess): 0
 
24
errno: 0
 
25
W_OK(/allaccess): 0
 
26
errno: 0
 
27
 
 
28
F_OK(/forbidden): 0
 
29
errno: 0
 
30
R_OK(/forbidden): -1
 
31
errno: 13
 
32
X_OK(/forbidden): -1
 
33
errno: 13
 
34
W_OK(/forbidden): -1
 
35
errno: 13
 
36
 
 
37
F_OK(/nonexistent): -1
 
38
errno: 2
 
39
R_OK(/nonexistent): -1
 
40
errno: 2
 
41
X_OK(/nonexistent): -1
 
42
errno: 2
 
43
W_OK(/nonexistent): -1
 
44
errno: 2
 
45