node/test
Fedor Indutny eff771f399 tickprocessor: apply c++filt manually on mac
`/bin/sh -c` trick wasn't working for several reasons:

* `/bin/sh -c "..."` expects the first argument after `"..."` to be a
  `$0`, not a `$1`. Previously `-n` wasn't passed to `nm` because of
  this, and many symbols were ordered improperly
* `c++filt` was applied not only to the names of the functions but to
  their `nm` prefixes like `t` and `a` (`t xxx` turns into
  `unsigned char xxx`).

Instead of applying `c++filt` wide and using `sh -c`, execute `nm` as
requested by `deps/v8/tools/tickprocessor.js` and apply `c++filt` to all
matching entries manually.

Included test demonstrates where previous approach failed: all builtins
were merged into `v8::internal::Builtins::~Builtins`, because they were
prefixed by `t` in `nm` output.

PR-URL: https://github.com/nodejs/node/pull/8480
Reviewed-By: Matthew Loring <mattloring@google.com>
2016-09-13 17:04:47 -07:00
..
abort test: add abort test for backtrace validation 2016-07-05 22:36:48 +02:00
addons test: add an zlib binding addon test 2016-08-20 10:07:23 -05:00
cctest inspector: simplify buffer management 2016-09-09 11:06:13 -04:00
debugger test: make import common as the first line 2016-08-02 07:50:14 -05:00
disabled buffer: introduce latin1 encoding term 2016-08-08 21:37:37 +02:00
doctool test: skip doctool tests when js-yaml is missing 2016-07-12 05:21:14 -05:00
fixtures test: make crypto.timingSafeEqual test less flaky 2016-09-13 17:04:45 -07:00
gc test: make import common as the first line 2016-08-02 07:50:14 -05:00
internet test: fix ::1 error in test-dns-ipv6 2016-09-09 11:06:17 -04:00
known_issues test: add known issue test for path parse issue #6229 2016-09-09 11:06:09 -04:00
message tools: remove unnecessary imports and assignments 2016-07-13 06:50:48 -05:00
parallel tickprocessor: apply c++filt manually on mac 2016-09-13 17:04:47 -07:00
pseudo-tty test: skip pseudo-tty/no_dropped_stdio test 2016-09-13 17:04:45 -07:00
pummel tools: replace custom ESLint rule with built-in 2016-09-13 17:04:47 -07:00
sequential test: make crypto.timingSafeEqual test less flaky 2016-09-13 17:04:45 -07:00
testpy tools: remove unnecessary imports and assignments 2016-07-13 06:50:48 -05:00
timers timers: remove unused repeat param in timer_wrap 2016-08-10 13:03:45 -04:00
.eslintrc tools: consistent .eslintrc formatting 2016-07-20 06:36:27 -05:00
common.js test: refactor/cleanup a number of cluster tests 2016-09-09 11:06:16 -04:00
README.md test: fix another flaky stringbytes test 2016-04-06 06:22:40 -07:00

Tests

abort

Tests for when the --abort-on-uncaught-exception flag is used.

Runs on CI
No

addons

Tests for addon functionality along with some tests that require an addon to function properly.

Runs on CI
Yes

cctest

C++ test that is run as part of the build process.

Runs on CI
Yes

debugger

Tests for debugger functionality.

Runs on CI
No

disabled

Tests that have been disabled from running for various reasons.

Runs on CI
No

fixtures

Test fixtures used in various tests throughout the test suite.

gc

Tests for garbage collection related functionality.

Runs on CI
No

internet

Tests that make real outbound connections (mainly networking related modules). Tests for networking related modules may also be present in other directories, but those tests do not make outbound connections.

Runs on CI
No

known_issues

Tests reproducing known issues within the system.

Runs on CI
No

message

Tests for messages that are output for various conditions (console.log, error messages etc.)

Runs on CI
Yes

parallel

Various tests that are able to be run in parallel.

Runs on CI
Yes

pummel

Various tests for various modules / system functionality operating under load.

Runs on CI
No

sequential

Various tests that are run sequentially.

Runs on CI
Yes

testpy

Test configuration utility used by various test suites.

timers

Tests for timing utilities (setTimeout and setInterval).

Runs on CI
No