From 11bd5e07cbdc57aa819beb1509cc21f47b10f80f Mon Sep 17 00:00:00 2001 From: cjihrig Date: Thu, 28 Feb 2019 20:54:35 -0500 Subject: [PATCH] test: rename node-report suite to report This commit renames the "node-report" test suite to "report" in order to begin differentiating core's diagnostic reporting from the original node-report module on npm PR-URL: https://github.com/nodejs/node/pull/26371 Reviewed-By: Richard Lau Reviewed-By: Rich Trott Reviewed-By: Minwoo Jung Reviewed-By: James M Snell --- .../test-fatal-error.js => report/test-report-fatal-error.js} | 0 .../test-api-getreport.js => report/test-report-getreport.js} | 0 .../test-signal.js => report/test-report-signal.js} | 0 .../test-api-nohooks.js => report/test-report-triggerreport.js} | 0 .../test-report-uncaught-exception.js} | 0 .../test-api-uvhandles.js => report/test-report-uv-handles.js} | 0 test/{node-report => report}/testcfg.py | 2 +- 7 files changed, 1 insertion(+), 1 deletion(-) rename test/{node-report/test-fatal-error.js => report/test-report-fatal-error.js} (100%) rename test/{node-report/test-api-getreport.js => report/test-report-getreport.js} (100%) rename test/{node-report/test-signal.js => report/test-report-signal.js} (100%) rename test/{node-report/test-api-nohooks.js => report/test-report-triggerreport.js} (100%) rename test/{node-report/test-exception.js => report/test-report-uncaught-exception.js} (100%) rename test/{node-report/test-api-uvhandles.js => report/test-report-uv-handles.js} (100%) rename test/{node-report => report}/testcfg.py (64%) diff --git a/test/node-report/test-fatal-error.js b/test/report/test-report-fatal-error.js similarity index 100% rename from test/node-report/test-fatal-error.js rename to test/report/test-report-fatal-error.js diff --git a/test/node-report/test-api-getreport.js b/test/report/test-report-getreport.js similarity index 100% rename from test/node-report/test-api-getreport.js rename to test/report/test-report-getreport.js diff --git a/test/node-report/test-signal.js b/test/report/test-report-signal.js similarity index 100% rename from test/node-report/test-signal.js rename to test/report/test-report-signal.js diff --git a/test/node-report/test-api-nohooks.js b/test/report/test-report-triggerreport.js similarity index 100% rename from test/node-report/test-api-nohooks.js rename to test/report/test-report-triggerreport.js diff --git a/test/node-report/test-exception.js b/test/report/test-report-uncaught-exception.js similarity index 100% rename from test/node-report/test-exception.js rename to test/report/test-report-uncaught-exception.js diff --git a/test/node-report/test-api-uvhandles.js b/test/report/test-report-uv-handles.js similarity index 100% rename from test/node-report/test-api-uvhandles.js rename to test/report/test-report-uv-handles.js diff --git a/test/node-report/testcfg.py b/test/report/testcfg.py similarity index 64% rename from test/node-report/testcfg.py rename to test/report/testcfg.py index e5ea1f57a035b3..c06b75ce5c7dca 100644 --- a/test/node-report/testcfg.py +++ b/test/report/testcfg.py @@ -3,4 +3,4 @@ import testpy def GetConfiguration(context, root): - return testpy.ParallelTestConfiguration(context, root, 'node-report') + return testpy.ParallelTestConfiguration(context, root, 'report')