Skip to content

Commit e7a2ba4

Browse files
MikhailShchatkoMongoDB Bot
authored andcommitted
SERVER-93031 Fix suite config globs to include only files with .js extension (#25563)
GitOrigin-RevId: 8164ea7
1 parent 21c9610 commit e7a2ba4

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

buildscripts/resmokeconfig/matrix_suites/generated_suites/replica_sets_recordids_replicated_jscore_passthrough.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ selector:
4545
- jstests/core/fsync.js
4646
- jstests/core/txns/prepare_conflict.js
4747
- jstests/core/txns/prepare_conflict_aggregation_behavior.js
48-
- jstests/core/timeseries/*.*
49-
- jstests/core/txns/timeseries/*.*
48+
- jstests/core/timeseries/*.js
49+
- jstests/core/txns/timeseries/*.js
5050
- jstests/core/administrative/validate_db_metadata_command.js
5151
- jstests/core/catalog/list_catalog.js
5252
- jstests/core/write/bulk/bulk_write_timeseries_basic.js
@@ -55,7 +55,7 @@ selector:
5555
- jstests/core/write/bypass_empty_ts_replacement_timeseries.js
5656
- jstests/core/version_api_v1_command_coverage.js
5757
- jstests/core/api/*.js
58-
- jstests/core/query/distinct/*.*
58+
- jstests/core/query/distinct/*.js
5959
- jstests/core/query/cursor/cursora.js
6060
- jstests/core/write/delete/removeb.js
6161
- jstests/core/write/delete/removec.js
@@ -65,7 +65,7 @@ selector:
6565
- jstests/core/write/update/updatef.js
6666
- jstests/core/loadserverscripts.js
6767
- jstests/core/shell/shellstartparallel.js
68-
- jstests/core/txns/*.*
68+
- jstests/core/txns/*.js
6969
- jstests/core/latch_analyzer.js
7070
- jstests/core/administrative/current_op/currentop_waiting_for_latch.js
7171
- jstests/core/query/mr/mr_killop.js

buildscripts/resmokeconfig/matrix_suites/overrides/recordids_replicated.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
value:
77
exclude_files:
88
# due to error: 'timeseries' is not allowed with 'recordIdsReplicated'
9-
- jstests/core/timeseries/*.*
10-
- jstests/core/txns/timeseries/*.*
9+
- jstests/core/timeseries/*.js
10+
- jstests/core/txns/timeseries/*.js
1111
- jstests/core/administrative/validate_db_metadata_command.js
1212
- jstests/core/catalog/list_catalog.js
1313
- jstests/core/write/bulk/bulk_write_timeseries_basic.js
@@ -18,7 +18,7 @@
1818
- jstests/core/version_api_v1_command_coverage.js
1919
- jstests/core/api/*.js
2020
# due to error: Error: [0] != [1] are not equal : encountered an error in the parallel shell
21-
- jstests/core/query/distinct/*.*
21+
- jstests/core/query/distinct/*.js
2222
- jstests/core/query/cursor/cursora.js
2323
- jstests/core/write/delete/removeb.js
2424
- jstests/core/write/delete/removec.js
@@ -32,7 +32,7 @@
3232
# The overrides don't work with renaming collections in general.
3333
# And the overrides don't work with creating collections in txns, because the override doesn't handle
3434
# the case of a transaction aborting.
35-
- jstests/core/txns/*.*
35+
- jstests/core/txns/*.js
3636
# due to error: "enableLatchAnalysis not found"
3737
- jstests/core/latch_analyzer.js
3838
# due to error: "currentOpSpawnsThreadWaitingForLatch not found"

0 commit comments

Comments
 (0)