15 lines
623 B
Diff
15 lines
623 B
Diff
Index: node-v10.24.1/test/parallel/test-zlib-dictionary-fail.js
|
|
===================================================================
|
|
--- node-v10.24.1.orig/test/parallel/test-zlib-dictionary-fail.js
|
|
+++ node-v10.24.1/test/parallel/test-zlib-dictionary-fail.js
|
|
@@ -23,6 +23,9 @@
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const zlib = require('zlib');
|
|
+const os = require('os');
|
|
+if (os.arch() === 's390x')
|
|
+ common.skip("Skipping bug on s390 pending zlib review on z15");
|
|
|
|
// String "test" encoded with dictionary "dict".
|
|
const input = Buffer.from([0x78, 0xBB, 0x04, 0x09, 0x01, 0xA5]);
|