Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions run_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,29 @@
"per_execution": 10000
}
},
{
"prereq": {
"name": "nvm 26.3.0, icu78.1",
"version": "26.3.0",
"command": "nvm install 26.3.0;nvm use 26.3.0 --silent"
},
"run": {
"icu_version": "icu78",
"exec": "node",
"test_type": [
"collation",
"datetime_fmt",
"list_fmt",
"number_fmt",
"lang_names",
"likely_subtags",
"rdt_fmt",
"plural_rules",
"segmenter"
],
"per_execution": 10000
}
},
{
"prereq": {
"name": "nvm 24.0.0, icu77.1",
Expand Down
1 change: 1 addition & 0 deletions testgen/generators/datetime_fmt.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ def generate_datetime_data_from_cldr(self, dt_json_path, run_limit=-1):
def process_test_data(self):
# Use NOde JS to create the .json files
icu_nvm_versions = {
'icu78': '26.3.0',
'icu77': '24.0.0',
'icu76': '23.11.0',
'icu75': '22.9.0',
Expand Down
1 change: 1 addition & 0 deletions testgen/generators/list_fmt.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ class ListFmtGenerator(DataGenerator):
def process_test_data(self):
# Use Node JS to create the .json files
icu_nvm_versions = {
'icu78': '26.3.0',
'icu77': '24.0.0',
'icu76': '23.11.0',
'icu75': '22.9.0',
Expand Down
2 changes: 1 addition & 1 deletion testgen/generators/relativedatetime_fmt.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class RelativeDateTimeFmtGenerator(DataGenerator):
def process_test_data(self):
# Use Node JS to create the .json files
icu_nvm_versions = {
'icu78': '25.2.1',
'icu78': '26.3.0',
'icu77': '24.0.0',
'icu76': '23.3.0',
'icu75': '22.9.0',
Expand Down
1 change: 1 addition & 0 deletions testgen/generators/segmenter.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ class SegmenterGenerator(DataGenerator):
def process_test_data(self):
# Use Node JS to create the .json files
icu_nvm_versions = {
'icu78': '26.3.0',
'icu77': '24.0.0',
'icu76': '23.11.0',
'icu75': '22.9.0',
Expand Down
Loading