diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-06-04 12:13:20 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-06-04 12:13:20 -0700 |
commit | 2ebaa5c8e1c3715c37ca72e6b687bd18bce14c10 (patch) | |
tree | 23be202f11606273b4c1295667db9079155ca6a0 /tests | |
parent | 65748bb85593d38967a4e8d45476b4fc35558105 (diff) | |
parent | ab5249c775475008c6e640040d7284711a6d3348 (diff) |
Merge pull request #1225 from inolen/errno
synced library.js errno codes with sys/errno.h
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/runner.py | 4 | ||||
-rw-r--r-- | tests/unistd/login.out | 2 | ||||
-rw-r--r-- | tests/unistd/misc.out | 8 | ||||
-rw-r--r-- | tests/unistd/unlink.out | 2 |
4 files changed, 8 insertions, 8 deletions
diff --git a/tests/runner.py b/tests/runner.py index 803c1d2b..86e97b19 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -2244,8 +2244,8 @@ returned |umber one top notchfi FI FO FUM WHEN WHERE WHY HOW WHO|''', ['wowie', } ''' expected = ''' - <Numerical argument out of domain> - <Resource temporarily unavailable> + <Math arg out of domain of func> + <No more processes> <34> <123> ''' 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 |