numaru / vscode-ceedling-test-adapter

Ceedling Test Adapter for the VS Code Test Explorer
MIT License
37 stars 14 forks source link

Fix of double autorun triggering on test file save #59

Closed EighthMayer closed 4 years ago

EighthMayer commented 4 years ago

Currently saving of test*.c file triggers autorun twice. This is because the same files (test*.c) watched both for autorun event emitting and for reload, but reload emits TestLoadFinishedEvent which triggers autorun.

See note in description of TestAdapter.autorun field.