From 753d532f90de8997fc388ebd2ddc58a19638d9eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Wed, 26 Jun 2024 08:47:56 +0200 Subject: [PATCH] test: skip reproducible snapshot test on 32-bit Refs: https://github.com/nodejs/node/pull/53583#issuecomment-2189106131 --- test/parallel/test-snapshot-reproducible.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/parallel/test-snapshot-reproducible.js b/test/parallel/test-snapshot-reproducible.js index f9392a7fb4adfc..f748e40382902b 100644 --- a/test/parallel/test-snapshot-reproducible.js +++ b/test/parallel/test-snapshot-reproducible.js @@ -1,11 +1,13 @@ 'use strict'; -require('../common'); +const common = require('../common'); const { spawnSyncAndAssert } = require('../common/child_process'); const tmpdir = require('../common/tmpdir'); const fs = require('fs'); const assert = require('assert'); +common.skipIf32Bits(); + // When the test fails this helper can be modified to write outputs // differently and aid debugging. function log(line) {