From 8b31e9d86a1908f2565193c779aeb4d9e98302cf Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Wed, 8 Jan 2025 12:09:09 -0800 Subject: [PATCH] Skip some pow perf tests while inlining G mix function. --- test/perf.block.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/perf.block.js b/test/perf.block.js index 79a41e2..bb7abf3 100644 --- a/test/perf.block.js +++ b/test/perf.block.js @@ -11,7 +11,7 @@ import 'nano-webgl-pow' await suite('Block performance', async () => { const COUNT = 0x20 - await test(`PowGpu: Calculate proof-of-work for 6 unique block hashes`, async () => { + await skip(`PowGpu: Calculate proof-of-work for 6 unique block hashes`, async () => { const times = [] const hashes = [ NANO_TEST_VECTORS.PRIVATE_0, @@ -37,7 +37,7 @@ await suite('Block performance', async () => { console.log(`Maximum: ${max} ms`) }) - await test(`PowGl: Calculate proof-of-work for 6 unique block hashes`, async () => { + await skip(`PowGl: Calculate proof-of-work for 6 unique block hashes`, async () => { const times = [] const hashes = [ NANO_TEST_VECTORS.PRIVATE_0, -- 2.34.1