Skip to content

Commit 72c1b78

Browse files
authored
[verification] Reduce the number of the generated tests (#481)
1 parent 38f4995 commit 72c1b78

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

scripts/run-verification.sh

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ SEED=$(date --iso-8601=seconds)
99
export INTERPRETER_DRIVER_CONF=$(cat <<-EOF
1010
{
1111
"seed" : "${SEED}",
12-
"keys" : 100000,
13-
"tests" : 1000000,
12+
"keys" : 1000000,
13+
"tests" : 100000,
1414
"maxProgramSize" : 20,
1515
"crashInterval" : 900000,
1616
"bootstrap" : true
@@ -84,6 +84,8 @@ export UNIVERSE_ENV_JSON=$(cat <<-EOF
8484
"PORT": "9000",
8585
"RESTATE_LOGGING": "ERROR",
8686
"NODE_ENV": "production",
87+
"UV_THREADPOOL_SIZE" : "8",
88+
"NODE_OPTS" : "--max-old-space-size=4096",
8789
"SERVICES": "ObjectInterpreterL0"
8890
}
8991
},
@@ -95,6 +97,8 @@ export UNIVERSE_ENV_JSON=$(cat <<-EOF
9597
"PORT": "9001",
9698
"RESTATE_LOGGING": "ERROR",
9799
"NODE_ENV": "production",
100+
"UV_THREADPOOL_SIZE" : "8",
101+
"NODE_OPTS" : "--max-old-space-size=4096",
98102
"SERVICES": "ObjectInterpreterL1"
99103
}
100104
},
@@ -106,6 +110,8 @@ export UNIVERSE_ENV_JSON=$(cat <<-EOF
106110
"PORT": "9002",
107111
"RESTATE_LOGGING": "ERROR",
108112
"NODE_ENV": "production",
113+
"UV_THREADPOOL_SIZE" : "8",
114+
"NODE_OPTS" : "--max-old-space-size=4096",
109115
"SERVICES": "ObjectInterpreterL2"
110116
}
111117
},
@@ -117,6 +123,8 @@ export UNIVERSE_ENV_JSON=$(cat <<-EOF
117123
"PORT": "9003",
118124
"RESTATE_LOGGING": "ERROR",
119125
"NODE_ENV": "production",
126+
"UV_THREADPOOL_SIZE" : "8",
127+
"NODE_OPTS" : "--max-old-space-size=4096",
120128
"SERVICES": "ServiceInterpreterHelper"
121129
}
122130
}

0 commit comments

Comments
 (0)