diff options
author | Anthony Pesch <anthony@usamp.com> | 2013-06-03 21:05:27 -0700 |
---|---|---|
committer | Anthony Pesch <anthony@usamp.com> | 2013-06-04 11:39:26 -0700 |
commit | ab5249c775475008c6e640040d7284711a6d3348 (patch) | |
tree | d7157093a5a5511c08dd9faa4a20c307e137edf9 /tests/unistd | |
parent | 9265b7cd8e1d23498bc01edb8fa6e745af3ff0d2 (diff) |
Updated tests to reflect new error values
Diffstat (limited to 'tests/unistd')
-rw-r--r-- | tests/unistd/login.out | 2 | ||||
-rw-r--r-- | tests/unistd/misc.out | 8 | ||||
-rw-r--r-- | tests/unistd/unlink.out | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/tests/unistd/login.out b/tests/unistd/login.out index c1919c3c..50e850ae 100644 --- a/tests/unistd/login.out +++ b/tests/unistd/login.out @@ -3,7 +3,7 @@ errno: 0 gethostname/2 ret: -1 gethostname/2: em------------------------ -errno: 36 +errno: 91 gethostname/256 ret: 0 gethostname/256: emscripten diff --git a/tests/unistd/misc.out b/tests/unistd/misc.out index a872a258..43971955 100644 --- a/tests/unistd/misc.out +++ b/tests/unistd/misc.out @@ -11,8 +11,8 @@ lockf(good): 0, errno: 0 lockf(bad): -1, errno: 9 nice: 0, errno: 1 pause: -1, errno: 4 -pipe(good): -1, errno: 38 -pipe(bad): -1, errno: 38 +pipe(good): -1, errno: 88 +pipe(bad): -1, errno: 88 execl: -1, errno: 8 execle: -1, errno: 8 execlp: -1, errno: 8 @@ -29,8 +29,8 @@ alarm: 0, errno: 0 ualarm: 0, errno: 0 fork: -1, errno: 11 vfork: -1, errno: 11 -crypt: (null), errno: 38 -encrypt, errno: 38 +crypt: (null), errno: 88 +encrypt, errno: 88 getgid: 0, errno: 0 getegid: 0, errno: 0 getuid: 0, errno: 0 diff --git a/tests/unistd/unlink.out b/tests/unistd/unlink.out index 1dcec761..f7a894cb 100644 --- a/tests/unistd/unlink.out +++ b/tests/unistd/unlink.out @@ -37,6 +37,6 @@ access(/empty-forbidden) after rmdir: 0 access(/full) before: 0 errno: 21 access(/full) after unlink: 0 -errno: 39 +errno: 90 access(/full) after rmdir: 0 |