|
When we added the new passthrough suite, there was a typo in the etc/evergreen.yml:
|
etc/evergreen.yml
|
2657
|
- <<: *task_template
|
2658
|
name: change_streams_WT
|
2659
|
commands:
|
2660
|
- func: "do setup"
|
2661
|
- func: "run tests"
|
2662
|
vars:
|
2663
|
resmoke_args: --suites=change_streams --storageEngine=wiredTiger
|
2664
|
run_multiple_jobs: true
|
2665
|
|
2666
|
- <<: *task_template
|
2667
|
name: change_streams_mongos_passthrough_WT
|
2668
|
commands:
|
2669
|
- func: "do setup"
|
2670
|
- func: "run tests"
|
2671
|
vars:
|
2672
|
resmoke_args: --suites=change_streams --storageEngine=wiredTiger
|
2673
|
run_multiple_jobs: true
|
2674
|
|
That should say --suites=change_streams_mongos_passthrough.
The suite might not pass the first time, so this ticket might include more work than just fixing the typo.
|