~ubuntu-branches/ubuntu/saucy/nodejs/saucy

« back to all changes in this revision

Viewing changes to deps/uv/test/test-tcp-write-to-half-open-connection.c

  • Committer: Package Import Robot
  • Author(s): Jérémy Lal
  • Date: 2013-08-14 00:16:46 UTC
  • mfrom: (7.1.40 sid)
  • Revision ID: package-import@ubuntu.com-20130814001646-bzlysfh8sd6mukbo
Tags: 0.10.15~dfsg1-4
* Update 2005 patch, adding a handful of tests that can fail on
  slow platforms.
* Add 1004 patch to fix test failures when writing NaN to buffer
  on mipsel.

Show diffs side-by-side

added added

removed removed

Lines of Context:
125
125
                     connect_cb);
126
126
  ASSERT(r == 0);
127
127
 
128
 
  r = uv_run(loop);
 
128
  r = uv_run(loop, UV_RUN_DEFAULT);
129
129
  ASSERT(r == 0);
130
130
 
131
131
  ASSERT(write_cb_called > 0);
132
132
  ASSERT(read_cb_called > 0);
133
133
 
 
134
  MAKE_VALGRIND_HAPPY();
134
135
  return 0;
135
136
}