Skip to content

Instantly share code, notes, and snippets.

@smikes
Created May 7, 2014 14:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save smikes/55d63a056386391c8449 to your computer and use it in GitHub Desktop.
Save smikes/55d63a056386391c8449 to your computer and use it in GitHub Desktop.
Building node 0.10.28 on CentOS 5.10
make -C out BUILDTYPE=Release V=1
make[1]: Entering directory `/home/smikes/github/node/out'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/home/smikes/github/node/out'
ln -fs out/Release/node node
/usr/local/bin/python2.7 tools/test.py --mode=release simple message
=== release test-abort-fatal-error ===
Path: simple/test-abort-fatal-error
Command: out/Release/node /home/smikes/github/node/test/simple/test-abort-fatal-error.js
--- TIMEOUT ---
=== release test-http-pipeline-flood ===
Path: simple/test-http-pipeline-flood
ok - child
assert.js:92
throw new assert.AssertionError({
^
AssertionError: false == true
at process.<anonymous> (/home/smikes/github/node/test/simple/test-http-pipeline-flood.js:80:5)
at process.EventEmitter.emit (events.js:117:20)
Command: out/Release/node /home/smikes/github/node/test/simple/test-http-pipeline-flood.js
=== release test-tls-server-verify ===
Path: simple/test-tls-server-verify
connecting with agent1
connecting with agent2
connecting with agent3
connecting with nocert
connecting with agent1
connecting with agent2
connecting with agent3
connecting with nocert
connecting with agent1
connecting with agent2
connecting with agent3
connecting with nocert
connecting with agent1
connecting with agent2
connecting with agent3
connecting with nocert
connecting with agent1
connecting with agent2
connecting with agent3
Running 'Do not request certs. Everyone is unauthorized.'
- unauthed connection: undefined
* unauthed
- unauthed connection: undefined
* unauthed
- unauthed connection: undefined
* unauthed
- unauthed connection: undefined
* unauthed
Running 'Allow both authed and unauthed connections with CA1'
- authed connection: agent1
* authed
- unauthed connection: DEPTH_ZERO_SELF_SIGNED_CERT
* unauthed
- unauthed connection: UNABLE_TO_VERIFY_LEAF_SIGNATURE
* unauthed
- unauthed connection: UNABLE_TO_GET_ISSUER_CERT
* unauthed
Running 'Allow only authed connections with CA1'
- authed connection: agent1
* authed
Running 'Allow only authed connections with CA1 and CA2'
- authed connection: agent1
* authed
- authed connection: agent3
* authed
Running 'Allow only certs signed by CA2 but not in the CRL'
assert.js:92
throw new assert.AssertionError({
^
AssertionError: agent3 rejected, but should NOT have been
at ChildProcess.<anonymous> (/home/smikes/github/node/test/simple/test-tls-server-verify.js:217:14)
at ChildProcess.EventEmitter.emit (events.js:98:17)
at Process.ChildProcess._handle.onexit (child_process.js:807:12)
Command: out/Release/node /home/smikes/github/node/test/simple/test-tls-server-verify.js
[04:20|% 100|+ 616|- 3]: Done
make: *** [test] Error 1
Steps:
1. install python 2.7
download Python.2.7.6.tgz
configure with ./configure --enable-ipv6 --prefix=/usr/local
make && make altinstall
2. checkout current node from github
git clone git://github.com/joyent/node
cd node ; git pull origin v0.10.28
3. configure
python2.7 configure
4. build
make -j4
5. test
make test
results as above
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment