Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: nodejs/node-v0.x-archive
base: 440b9e224574
Choose a base ref
...
head repository: nodejs/node-v0.x-archive
compare: b5f9779c2f83
Choose a head ref
  • 15 commits
  • 235 files changed
  • 2 contributors

Commits on Feb 25, 2014

  1. test: remove next-tick-loops-quick

    Scheduling of next ticks from within the next tick handler will result
    in a tight execution loop where a timer cannot break into.
    
    This test was invalid
    tjfontaine committed Feb 25, 2014
    Copy the full SHA
    e324717 View commit details
    Browse the repository at this point in the history
  2. test: pummel fs-watch-file-slow handle spurious

    watch file will now generate an empty event when the file doesn't exist
    initially
    tjfontaine committed Feb 25, 2014
    Copy the full SHA
    3a3b748 View commit details
    Browse the repository at this point in the history
  3. test: pummel/test-net-throttle adhere to streams

    bufferSize is now a getter that shows all that has not been
    acknowledged by the os, as well as in the buffer state. The test is
    only looking to verify the js verified state.
    tjfontaine committed Feb 25, 2014
    Copy the full SHA
    95bb347 View commit details
    Browse the repository at this point in the history
  4. test: move pummel/test-fs-largefile to disabled

    This test is particularly pathological, and requires a ton of time to
    run, we need to find a better way to manage it but in general this path
    is fairly safe these days.
    tjfontaine committed Feb 25, 2014
    Copy the full SHA
    78a854f View commit details
    Browse the repository at this point in the history
  5. test: internet/test-dns handle ESERVFAIL

    ESERVFAIL is also an acceptable error code when failing to resolve a
    domain.
    tjfontaine committed Feb 25, 2014
    Copy the full SHA
    265fdc8 View commit details
    Browse the repository at this point in the history
  6. test: pummel/*ci-reneg* handle EPIPE

    When calling out to the openssl client handle the child closing and
    returning EPIPE on writes
    tjfontaine committed Feb 25, 2014
    Copy the full SHA
    de56ffa View commit details
    Browse the repository at this point in the history
  7. Copy the full SHA
    d2952cc View commit details
    Browse the repository at this point in the history
  8. Copy the full SHA
    407e295 View commit details
    Browse the repository at this point in the history
  9. Copy the full SHA
    581b858 View commit details
    Browse the repository at this point in the history
  10. wrk: compile on sunos

    tjfontaine committed Feb 25, 2014
    Copy the full SHA
    fa0ac99 View commit details
    Browse the repository at this point in the history
  11. Copy the full SHA
    bfc823d View commit details
    Browse the repository at this point in the history
  12. test: pummel/net-connect-econnrefused backoff

    We were trying too hard to connect, and getting timeouts instead of
    the refusals, slow down how hard we try.
    tjfontaine committed Feb 25, 2014
    Copy the full SHA
    67dfcd5 View commit details
    Browse the repository at this point in the history
  13. test: internet/test-dns disable implicit ipv6

    This ends up being too difficult to test across different deployments
    tjfontaine committed Feb 25, 2014
    Copy the full SHA
    98a0909 View commit details
    Browse the repository at this point in the history
  14. net: fix listening on FDs on Windows

    Fix a bug introduced by 3da36fe of a missed early return of a handle
    that needed to be passed to listen.
    
    Fixes test-net-listen-fd0.js on Windows
    orangemocha authored and tjfontaine committed Feb 25, 2014
    Copy the full SHA
    2ca4d9d View commit details
    Browse the repository at this point in the history
  15. windows: fix module registration

    The linker was optimizing the static variables that were supposed
    to trigger module initialization.
    
    I am making them non-static, and dllexport so that they don't get
    optimized away.
    
    Fixes #7116
    orangemocha authored and tjfontaine committed Feb 25, 2014
    Copy the full SHA
    b5f9779 View commit details
    Browse the repository at this point in the history