forked from pool/nodejs22
Adam Majer
8ff7f8e84c
OBS-URL: https://build.opensuse.org/package/show/devel:languages:nodejs/nodejs22?expand=0&rev=6
147 lines
6.2 KiB
Diff
147 lines
6.2 KiB
Diff
Author: Adam Majer <amajer@suse.de>
|
|
Date: Dec 20 09:18:49 UTC 2017
|
|
Summary: Fix CI unit tests framework for OBS building
|
|
|
|
Index: node-v22.1.0/test/parallel/test-node-output-v8-warning.mjs
|
|
===================================================================
|
|
--- node-v22.1.0.orig/test/parallel/test-node-output-v8-warning.mjs
|
|
+++ node-v22.1.0/test/parallel/test-node-output-v8-warning.mjs
|
|
@@ -15,7 +15,7 @@ describe('v8 output', { concurrency: !pr
|
|
.replaceAll('*test*', '*')
|
|
.replaceAll(/.*?\*fixtures\*v8\*/g, '(node:*) V8: *') // Replace entire path before fixtures/v8
|
|
.replaceAll('*fixtures*v8*', '*')
|
|
- .replaceAll('node --', '* --');
|
|
+ .replace(/node\d+ --/, '* --');
|
|
}
|
|
const common = snapshot
|
|
.transform(snapshot.replaceWindowsLineEndings, snapshot.replaceWindowsPaths, replaceNodeVersion);
|
|
Index: node-v22.1.0/test/parallel/test-module-loading-globalpaths.js
|
|
===================================================================
|
|
--- node-v22.1.0.orig/test/parallel/test-module-loading-globalpaths.js
|
|
+++ node-v22.1.0/test/parallel/test-module-loading-globalpaths.js
|
|
@@ -11,6 +11,9 @@ const { addLibraryPath } = require('../c
|
|
|
|
addLibraryPath(process.env);
|
|
|
|
+common.skip('hardcoded global paths');
|
|
+return;
|
|
+
|
|
if (process.argv[2] === 'child') {
|
|
console.log(require(pkgName).string);
|
|
} else {
|
|
Index: node-v22.1.0/test/parallel/test-tls-passphrase.js
|
|
===================================================================
|
|
--- node-v22.1.0.orig/test/parallel/test-tls-passphrase.js
|
|
+++ node-v22.1.0/test/parallel/test-tls-passphrase.js
|
|
@@ -223,7 +223,7 @@ server.listen(0, common.mustCall(functio
|
|
}, onSecureConnect());
|
|
})).unref();
|
|
|
|
-const errMessageDecrypt = /bad decrypt/;
|
|
+const errMessageDecrypt = /bad (decrypt|password read)/;
|
|
|
|
// Missing passphrase
|
|
assert.throws(function() {
|
|
Index: node-v22.1.0/test/parallel/test-repl-envvars.js
|
|
===================================================================
|
|
--- node-v22.1.0.orig/test/parallel/test-repl-envvars.js
|
|
+++ node-v22.1.0/test/parallel/test-repl-envvars.js
|
|
@@ -2,7 +2,9 @@
|
|
|
|
// Flags: --expose-internals
|
|
|
|
-require('../common');
|
|
+const common = require('../common');
|
|
+common.skip('Not running test in OBS');
|
|
+
|
|
const stream = require('stream');
|
|
const { describe, test } = require('node:test');
|
|
const REPL = require('internal/repl');
|
|
Index: node-v22.1.0/Makefile
|
|
===================================================================
|
|
--- node-v22.1.0.orig/Makefile
|
|
+++ node-v22.1.0/Makefile
|
|
@@ -389,7 +389,6 @@ ADDONS_HEADERS_PREREQS := tools/install.
|
|
$(wildcard deps/uv/include/*/*.h) \
|
|
$(wildcard deps/v8/include/*.h) \
|
|
$(wildcard deps/v8/include/*/*.h) \
|
|
- deps/zlib/zconf.h deps/zlib/zlib.h \
|
|
src/node.h src/node_api.h src/js_native_api.h src/js_native_api_types.h \
|
|
src/node_api_types.h src/node_buffer.h src/node_object_wrap.h \
|
|
src/node_version.h
|
|
@@ -560,7 +559,8 @@ test-ci-js: | clear-stalled
|
|
.PHONY: test-ci
|
|
# Related CI jobs: most CI tests, excluding node-test-commit-arm-fanned
|
|
test-ci: LOGLEVEL := info
|
|
-test-ci: | clear-stalled bench-addons-build build-addons build-js-native-api-tests build-node-api-tests doc-only
|
|
+test-ci: | clear-stalled bench-addons-build build-addons build-js-native-api-tests build-node-api-tests
|
|
+ strip $(NODE_EXE)
|
|
out/Release/cctest --gtest_output=xml:out/junit/cctest.xml
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) -p tap --logfile test.tap \
|
|
--mode=$(BUILDTYPE_LOWER) --flaky-tests=$(FLAKY_TESTS) \
|
|
@@ -742,7 +742,8 @@ apidocs_json = $(addprefix out/,$(apidoc
|
|
apiassets = $(subst api_assets,api/assets,$(addprefix out/,$(wildcard doc/api_assets/*)))
|
|
|
|
tools/doc/node_modules: tools/doc/package.json
|
|
- @if [ "$(shell $(node_use_openssl))" != "true" ]; then \
|
|
+ echo "Skipping tools/doc/node_modules"
|
|
+# @if [ "$(shell $(node_use_openssl))" != "true" ]; then \
|
|
echo "Skipping tools/doc/node_modules (no crypto)"; \
|
|
else \
|
|
cd tools/doc && $(call available-node,$(run-npm-ci)) \
|
|
Index: node-v22.1.0/tools/test.py
|
|
===================================================================
|
|
--- node-v22.1.0.orig/tools/test.py
|
|
+++ node-v22.1.0/tools/test.py
|
|
@@ -1362,7 +1362,7 @@ def BuildOptions():
|
|
result.add_option("-s", "--suite", help="A test suite",
|
|
default=[], action="append")
|
|
result.add_option("-t", "--timeout", help="Timeout in seconds",
|
|
- default=120, type="int")
|
|
+ default=1200, type="int")
|
|
result.add_option("--arch", help='The architecture to run tests for',
|
|
default='none')
|
|
result.add_option("--snapshot", help="Run the tests with snapshot turned on",
|
|
Index: node-v22.1.0/test/parallel/test-crypto-dh.js
|
|
===================================================================
|
|
--- node-v22.1.0.orig/test/parallel/test-crypto-dh.js
|
|
+++ node-v22.1.0/test/parallel/test-crypto-dh.js
|
|
@@ -92,7 +92,7 @@ const crypto = require('crypto');
|
|
dh3.computeSecret('');
|
|
}, { message: common.hasOpenSSL3 && !hasOpenSSL3WithNewErrorMessage ?
|
|
'error:02800080:Diffie-Hellman routines::invalid secret' :
|
|
- 'Supplied key is too small' });
|
|
+ /(Supplied key is too small|invalid public key)/ });
|
|
}
|
|
}
|
|
|
|
Index: node-v22.1.0/benchmark/misc/startup-cli-version.js
|
|
===================================================================
|
|
--- node-v22.1.0.orig/benchmark/misc/startup-cli-version.js
|
|
+++ node-v22.1.0/benchmark/misc/startup-cli-version.js
|
|
@@ -11,10 +11,10 @@ const path = require('path');
|
|
// indispensible part of the CLI.
|
|
const bench = common.createBenchmark(main, {
|
|
cli: [
|
|
- 'tools/node_modules/eslint/bin/eslint.js',
|
|
'deps/npm/bin/npx-cli.js',
|
|
'deps/npm/bin/npm-cli.js',
|
|
'deps/corepack/dist/corepack.js',
|
|
+ 'tools/node_modules/eslint/bin/eslint.js',
|
|
],
|
|
count: [30],
|
|
});
|
|
Index: node-v22.1.0/test/parallel/test-buffer-failed-alloc-typed-arrays.js
|
|
===================================================================
|
|
--- node-v22.1.0.orig/test/parallel/test-buffer-failed-alloc-typed-arrays.js
|
|
+++ node-v22.1.0/test/parallel/test-buffer-failed-alloc-typed-arrays.js
|
|
@@ -12,7 +12,7 @@ const SlowBuffer = require('buffer').Slo
|
|
// whether or not to zero-fill was not being reset, causing TypedArrays to
|
|
// allocate incorrectly.
|
|
const zeroArray = new Uint32Array(10).fill(0);
|
|
-const sizes = [1e10, 0, 0.1, -1, 'a', undefined, null, NaN];
|
|
+const sizes = [1e20, 0, 0.1, -1, 'a', undefined, null, NaN];
|
|
const allocators = [
|
|
Buffer,
|
|
SlowBuffer,
|