From 87f6804b80b000e5a8d534b78c684e985ee9c3e6 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Fri, 21 Dec 2018 19:52:57 -0800 Subject: [PATCH] test: move heapdump tests to pummel The heapdump tests take a lot more time to run than our other tests in parallel. They are also a bit of an internal test that perhaps does not need to be run on every commit on every platform. This change moves them to the pummel directory where they will be run on a single platform once a day in CI. This shaves more than 20 seconds off `make test` on my laptop, FWIW. PR-URL: https://github.com/nodejs/node/pull/25181 Reviewed-By: Joyee Cheung Reviewed-By: Colin Ihrig Reviewed-By: Luigi Pinca Reviewed-By: Matheus Marchini Reviewed-By: Ruben Bridgewater Reviewed-By: James M Snell --- test/{parallel => pummel}/test-heapdump-dns.js | 0 test/{parallel => pummel}/test-heapdump-fs-promise.js | 0 test/{parallel => pummel}/test-heapdump-http2.js | 0 test/{parallel => pummel}/test-heapdump-inspector.js | 0 test/{parallel => pummel}/test-heapdump-tls.js | 0 test/{parallel => pummel}/test-heapdump-worker.js | 0 test/{parallel => pummel}/test-heapdump-zlib.js | 0 7 files changed, 0 insertions(+), 0 deletions(-) rename test/{parallel => pummel}/test-heapdump-dns.js (100%) rename test/{parallel => pummel}/test-heapdump-fs-promise.js (100%) rename test/{parallel => pummel}/test-heapdump-http2.js (100%) rename test/{parallel => pummel}/test-heapdump-inspector.js (100%) rename test/{parallel => pummel}/test-heapdump-tls.js (100%) rename test/{parallel => pummel}/test-heapdump-worker.js (100%) rename test/{parallel => pummel}/test-heapdump-zlib.js (100%) diff --git a/test/parallel/test-heapdump-dns.js b/test/pummel/test-heapdump-dns.js similarity index 100% rename from test/parallel/test-heapdump-dns.js rename to test/pummel/test-heapdump-dns.js diff --git a/test/parallel/test-heapdump-fs-promise.js b/test/pummel/test-heapdump-fs-promise.js similarity index 100% rename from test/parallel/test-heapdump-fs-promise.js rename to test/pummel/test-heapdump-fs-promise.js diff --git a/test/parallel/test-heapdump-http2.js b/test/pummel/test-heapdump-http2.js similarity index 100% rename from test/parallel/test-heapdump-http2.js rename to test/pummel/test-heapdump-http2.js diff --git a/test/parallel/test-heapdump-inspector.js b/test/pummel/test-heapdump-inspector.js similarity index 100% rename from test/parallel/test-heapdump-inspector.js rename to test/pummel/test-heapdump-inspector.js diff --git a/test/parallel/test-heapdump-tls.js b/test/pummel/test-heapdump-tls.js similarity index 100% rename from test/parallel/test-heapdump-tls.js rename to test/pummel/test-heapdump-tls.js diff --git a/test/parallel/test-heapdump-worker.js b/test/pummel/test-heapdump-worker.js similarity index 100% rename from test/parallel/test-heapdump-worker.js rename to test/pummel/test-heapdump-worker.js diff --git a/test/parallel/test-heapdump-zlib.js b/test/pummel/test-heapdump-zlib.js similarity index 100% rename from test/parallel/test-heapdump-zlib.js rename to test/pummel/test-heapdump-zlib.js