From c7fa132aea9b6c5508a41575024de4a6ce6baa5b Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Fri, 21 Dec 2018 19:19:48 -0800 Subject: [PATCH] tools: alphabetize IGNORED_SUITES in tools/test.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/25182 Reviewed-By: Richard Lau Reviewed-By: Michaƫl Zasso Reviewed-By: Colin Ihrig Reviewed-By: Luigi Pinca Reviewed-By: Trivikram Kamat Reviewed-By: Ruben Bridgewater --- tools/test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/test.py b/tools/test.py index ff20cb133cea6a..738997d58408ce 100755 --- a/tools/test.py +++ b/tools/test.py @@ -1514,11 +1514,11 @@ def PrintCrashed(code): # addons/ requires compilation. IGNORED_SUITES = [ 'addons', - 'js-native-api', - 'node-api', 'benchmark', 'doctool', 'internet', + 'js-native-api', + 'node-api', 'pummel', 'tick-processor', 'v8-updates'