From 25aaf1acd3d4ec2fb4210136c4b6612b9c45054c Mon Sep 17 00:00:00 2001 From: Richard Lau Date: Thu, 11 Jan 2024 12:31:14 +0000 Subject: [PATCH] test: fix flaky conditions for ppc64 SEA tests In test status files, `$system` will be the OS and not the arch (which would be `$arch`). Add missing single-executable-application test to the list of tests marked flaky on Linux ppc64le. PR-URL: https://github.com/nodejs/node/pull/51422 Refs: https://github.com/nodejs/node/pull/50828 Refs: https://github.com/nodejs/node/issues/50740 Reviewed-By: Rafael Gonzaga Reviewed-By: Michael Dawson Reviewed-By: Yagiz Nizipli Reviewed-By: Joyee Cheung Reviewed-By: Luigi Pinca --- test/sequential/sequential.status | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/sequential/sequential.status b/test/sequential/sequential.status index c3f2cda226dcbe..c8c9428e7df3e6 100644 --- a/test/sequential/sequential.status +++ b/test/sequential/sequential.status @@ -47,8 +47,9 @@ test-watch-mode-inspect: SKIP # https://github.com/nodejs/node/issues/41286 test-performance-eventloopdelay: PASS, FLAKY -[$system==ppc || $system==ppc64] +[$system==linux && $arch==ppc64] # https://github.com/nodejs/node/issues/50740 +test-single-executable-application-disable-experimental-sea-warning: PASS, FLAKY test-single-executable-application-empty: PASS, FLAKY test-single-executable-application-snapshot-and-code-cache: PASS, FLAKY test-single-executable-application-snapshot: PASS, FLAKY