<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/node.git/test, branch master</title>
<subtitle>github.com: joyent/node.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/'/>
<entry>
<title>test: add test-spawn-cmd-named-pipe</title>
<updated>2015-08-17T07:08:51+00:00</updated>
<author>
<name>Alexis Campailla</name>
<email>alexis@janeasystems.com</email>
</author>
<published>2014-04-09T10:05:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=5f5244f15fee1384c8e97c8626540a4945fc013d'/>
<id>5f5244f15fee1384c8e97c8626540a4945fc013d</id>
<content type='text'>
See https://github.com/joyent/node/issues/7345

Adding a test to verify that a node process spawned via cmd with
named pipes can access its stdio streams.

PR-URL: https://github.com/joyent/node/pull/7433
Reviewed-By: Fedor Indutny &lt;fedor@indutny.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
See https://github.com/joyent/node/issues/7345

Adding a test to verify that a node process spawned via cmd with
named pipes can access its stdio streams.

PR-URL: https://github.com/joyent/node/pull/7433
Reviewed-By: Fedor Indutny &lt;fedor@indutny.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge remote-tracking branch 'upstream/v0.12'</title>
<updated>2015-07-27T09:52:49+00:00</updated>
<author>
<name>João Reis</name>
<email>reis@janeasystems.com</email>
</author>
<published>2015-07-27T09:52:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=4d2a1a993e575c8ca201b961dc741d24ae3b7efb'/>
<id>4d2a1a993e575c8ca201b961dc741d24ae3b7efb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>test: mark test-signal-unregister as flaky</title>
<updated>2015-07-24T09:04:43+00:00</updated>
<author>
<name>Alexis Campailla</name>
<email>alexis@janeasystems.com</email>
</author>
<published>2015-07-22T14:12:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=cf435d55db1900b996e069738673ce1ed4cee180'/>
<id>cf435d55db1900b996e069738673ce1ed4cee180</id>
<content type='text'>
This test just failed on Ubuntu in Jenkins, for a change that
is 100% Windows-specific.

Reviewed-By: Joao Reis &lt;reis@janeasystems.com&gt;
PR-URL: https://github.com/joyent/node/pull/25750
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This test just failed on Ubuntu in Jenkins, for a change that
is 100% Windows-specific.

Reviewed-By: Joao Reis &lt;reis@janeasystems.com&gt;
PR-URL: https://github.com/joyent/node/pull/25750
</pre>
</div>
</content>
</entry>
<entry>
<title>test: fix test-debug-port-from-cmdline</title>
<updated>2015-07-23T15:18:33+00:00</updated>
<author>
<name>João Reis</name>
<email>reis@janeasystems.com</email>
</author>
<published>2015-07-15T12:19:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=ceb6a8c131e53036f041bd2c5ff834ef1398981e'/>
<id>ceb6a8c131e53036f041bd2c5ff834ef1398981e</id>
<content type='text'>
This change is a backport of 2b4b6006607c33a5699ec53afaf40f987dc11895
from io.js.

Original commit message:

  This test was failing because the spawned process was terminated
  before anything could be done, by calling child.stdin.end. With this
  change, the child's stdin is no longer closed. When the stdin is not
  a tty, io.js waits for the whole input before starting, so the child
  must be run with --interactive to process the command sent by the
  parent. The child is killed explicitly by the parent before it exits.

  This test was failing silently because the asserts were not called if
  nothing was received from the child. This fix moves assertOutputLines
  to always run on exit.

  Fixes: https://github.com/nodejs/io.js/issues/2177
  Refs: https://github.com/nodejs/io.js/issues/2094
  PR-URL: https://github.com/nodejs/io.js/pull/2186
  Reviewed-By: Colin Ihrig &lt;cjihrig@gmail.com&gt;
  Reviewed-By: Rod Vagg &lt;rod@vagg.org&gt;
  Reviewed-By: Johan Bergström &lt;bugs@bergstroem.nu&gt;
  Reviewed-By: Alexis Campailla &lt;alexis@janeasystems.com&gt;

Reviewed-By: Colin Ihrig &lt;cjihrig@gmail.com&gt;
PR-URL: https://github.com/joyent/node/pull/25748
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This change is a backport of 2b4b6006607c33a5699ec53afaf40f987dc11895
from io.js.

Original commit message:

  This test was failing because the spawned process was terminated
  before anything could be done, by calling child.stdin.end. With this
  change, the child's stdin is no longer closed. When the stdin is not
  a tty, io.js waits for the whole input before starting, so the child
  must be run with --interactive to process the command sent by the
  parent. The child is killed explicitly by the parent before it exits.

  This test was failing silently because the asserts were not called if
  nothing was received from the child. This fix moves assertOutputLines
  to always run on exit.

  Fixes: https://github.com/nodejs/io.js/issues/2177
  Refs: https://github.com/nodejs/io.js/issues/2094
  PR-URL: https://github.com/nodejs/io.js/pull/2186
  Reviewed-By: Colin Ihrig &lt;cjihrig@gmail.com&gt;
  Reviewed-By: Rod Vagg &lt;rod@vagg.org&gt;
  Reviewed-By: Johan Bergström &lt;bugs@bergstroem.nu&gt;
  Reviewed-By: Alexis Campailla &lt;alexis@janeasystems.com&gt;

Reviewed-By: Colin Ihrig &lt;cjihrig@gmail.com&gt;
PR-URL: https://github.com/joyent/node/pull/25748
</pre>
</div>
</content>
</entry>
<entry>
<title>fix</title>
<updated>2015-07-20T18:47:07+00:00</updated>
<author>
<name>Fedor Indutny</name>
<email>fedor@indutny.com</email>
</author>
<published>2015-07-19T18:21:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=b8d47a7b6f0ba70883ce5566f5c381a16eedb2a2'/>
<id>b8d47a7b6f0ba70883ce5566f5c381a16eedb2a2</id>
<content type='text'>
Reviewed-By: Fedor Indutny &lt;fedor@indutny.com&gt;
PR-URL: https://github.com/joyent/node/pull/25739
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Reviewed-By: Fedor Indutny &lt;fedor@indutny.com&gt;
PR-URL: https://github.com/joyent/node/pull/25739
</pre>
</div>
</content>
</entry>
<entry>
<title>test: add regression test for #25735</title>
<updated>2015-07-20T18:47:06+00:00</updated>
<author>
<name>Fedor Indutny</name>
<email>fedor@indutny.com</email>
</author>
<published>2015-07-18T19:36:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=22997731e60eeb84b1e03ff438710ff219b46854'/>
<id>22997731e60eeb84b1e03ff438710ff219b46854</id>
<content type='text'>
See: https://github.com/joyent/node/issues/25736

Reviewed-By: Fedor Indutny &lt;fedor@indutny.com&gt;
PR-URL: https://github.com/joyent/node/pull/25739
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
See: https://github.com/joyent/node/issues/25736

Reviewed-By: Fedor Indutny &lt;fedor@indutny.com&gt;
PR-URL: https://github.com/joyent/node/pull/25739
</pre>
</div>
</content>
</entry>
<entry>
<title>tls: do not hang without `newSession` handler</title>
<updated>2015-07-20T18:47:06+00:00</updated>
<author>
<name>Fedor Indutny</name>
<email>fedor@indutny.com</email>
</author>
<published>2014-11-04T16:14:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=75697112e85b66e697db600d9238caff0ef69e0d'/>
<id>75697112e85b66e697db600d9238caff0ef69e0d</id>
<content type='text'>
When listening for client hello parser events (like OCSP requests), do
not hang if `newSession` event handler is not present.

Fix: https://github.com/joyent/node/issues/8660
Fix: https://github.com/joyent/node/issues/25735

Reviewed-By: Fedor Indutny &lt;fedor@indutny.com&gt;
PR-URL: https://github.com/joyent/node/pull/25739
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When listening for client hello parser events (like OCSP requests), do
not hang if `newSession` event handler is not present.

Fix: https://github.com/joyent/node/issues/8660
Fix: https://github.com/joyent/node/issues/25735

Reviewed-By: Fedor Indutny &lt;fedor@indutny.com&gt;
PR-URL: https://github.com/joyent/node/pull/25739
</pre>
</div>
</content>
</entry>
<entry>
<title>test: mark http-pipeline-flood flaky on win32</title>
<updated>2015-07-17T18:46:04+00:00</updated>
<author>
<name>Julien Gilli</name>
<email>julien.gilli@joyent.com</email>
</author>
<published>2015-07-17T17:01:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=39e05639f41fc0ad66f03a8e3dc503c83f8165a2'/>
<id>39e05639f41fc0ad66f03a8e3dc503c83f8165a2</id>
<content type='text'>
Reviewed-By: Julien Gilli &lt;julien.gilli@joyent.com&gt;
PR-URL: https://github.com/joyent/node/pull/25707
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Reviewed-By: Julien Gilli &lt;julien.gilli@joyent.com&gt;
PR-URL: https://github.com/joyent/node/pull/25707
</pre>
</div>
</content>
</entry>
<entry>
<title>test: unmark tests that are no longer flaky</title>
<updated>2015-07-16T09:10:08+00:00</updated>
<author>
<name>João Reis</name>
<email>reis@janeasystems.com</email>
</author>
<published>2015-07-13T17:09:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=78d256e7f5def6e1ffbf5fb5b232ecf78bc7bde5'/>
<id>78d256e7f5def6e1ffbf5fb5b232ecf78bc7bde5</id>
<content type='text'>
- `test-crypto-domains` was fixed by
joyent/node@2afa3d8a03f1f0798d83dc57abc252bb78b7e591

- All tests under linux appear to be fixed and have not failed recently
on Jenkins

- `test-http-dns-fail` was fixed by the DNS configuration change
mentioned in joyent/node#8056

Fixes #25656
Fixes #25673

Reviewed-By: Alexis Campailla &lt;alexis@janeasystems.com&gt;
PR-URL: https://github.com/joyent/node/pull/25676
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- `test-crypto-domains` was fixed by
joyent/node@2afa3d8a03f1f0798d83dc57abc252bb78b7e591

- All tests under linux appear to be fixed and have not failed recently
on Jenkins

- `test-http-dns-fail` was fixed by the DNS configuration change
mentioned in joyent/node#8056

Fixes #25656
Fixes #25673

Reviewed-By: Alexis Campailla &lt;alexis@janeasystems.com&gt;
PR-URL: https://github.com/joyent/node/pull/25676
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge remote-tracking branch 'upstream/v0.12'</title>
<updated>2015-07-04T18:23:10+00:00</updated>
<author>
<name>Julien Gilli</name>
<email>julien.gilli@joyent.com</email>
</author>
<published>2015-07-04T18:23:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=6aea173e934f9d858545566299113533bf674802'/>
<id>6aea173e934f9d858545566299113533bf674802</id>
<content type='text'>
Conflicts:
	src/node_version.h
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Conflicts:
	src/node_version.h
</pre>
</div>
</content>
</entry>
</feed>
