Increase memory to 32gb for test-internal-react and test-internal (#2524)

Summary:
Release notes: `test-internal-react` and `test-internal` now use `--max_old_space_size=32768`

As per the title, this increases the max memory allocation for Node to 32gb. `--max_old_space_size=32768`.
Pull Request resolved: https://github.com/facebook/prepack/pull/2524

Differential Revision: D9618037

Pulled By: trueadm

fbshipit-source-id: 6bd595410c6f93ccc5abbc116ee892e8de519eed
This commit is contained in:
Dominic Gannaway 2018-08-31 14:15:40 -07:00 committed by Facebook Github Bot
parent 5ab6651fb5
commit ade7b71211

View File

@ -38,8 +38,8 @@
"test-test262": "babel-node scripts/test262-runner.js",
"test-test262-nightly": "NIGHTLY_BUILD=true babel-node scripts/test262-runner.js",
"test-test262-new": "babel-node scripts/test262.js",
"test-internal": "babel-node --stack_size=10000 --stack_trace_limit=200 --max_old_space_size=16384 scripts/test-internal.js",
"test-internal-react": "babel-node --stack_size=10000 --stack_trace_limit=200 --max_old_space_size=16384 scripts/test-internal-react.js",
"test-internal": "babel-node --stack_size=10000 --stack_trace_limit=200 --max_old_space_size=32768 scripts/test-internal.js",
"test-internal-react": "babel-node --stack_size=10000 --stack_trace_limit=200 --max_old_space_size=32768 scripts/test-internal-react.js",
"test-error-handler": "babel-node scripts/test-error-handler.js",
"test-error-handler-with-coverage": "./node_modules/.bin/istanbul cover ./lib/test-error-handler.js --dir coverage.error && ./node_modules/.bin/remap-istanbul -i coverage.error/coverage.json -o coverage-sourcemapped.error -t html",
"test-std-in": "bash < scripts/test-std-in.sh",