Skip to content
Snippets Groups Projects
Commit d3295bf1 authored by Angie Byron's avatar Angie Byron
Browse files

Issue #2347493 by Sutharsan | bzrudi71: Fixed Writing test results leads to...

Issue #2347493 by Sutharsan | bzrudi71: Fixed Writing test results leads to FATAL because of memory_limit.
parent 383a916e
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -16,7 +16,9 @@ ...@@ -16,7 +16,9 @@
const SIMPLETEST_SCRIPT_COLOR_PASS = 32; // Green. const SIMPLETEST_SCRIPT_COLOR_PASS = 32; // Green.
const SIMPLETEST_SCRIPT_COLOR_FAIL = 31; // Red. const SIMPLETEST_SCRIPT_COLOR_FAIL = 31; // Red.
const SIMPLETEST_SCRIPT_COLOR_EXCEPTION = 33; // Brown. const SIMPLETEST_SCRIPT_COLOR_EXCEPTION = 33; // Brown.
const SIMPLETEST_SCRIPT_SQLITE_VARIABLE_LIMIT = 500;
// Restricting the chunk of queries prevents memory exhaustion.
const SIMPLETEST_SCRIPT_SQLITE_VARIABLE_LIMIT = 350;
// Set defaults and get overrides. // Set defaults and get overrides.
list($args, $count) = simpletest_script_parse_args(); list($args, $count) = simpletest_script_parse_args();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment