mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-03 21:23:38 +00:00
Concurrency bug in testing #33
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @KOLANICH on GitHub (May 21, 2015).
When you run tests first time, some tests fail. Then if you rerun unpassed tests, they will pass. Seems like a bug in concurrency
@adamhathcock commented on GitHub (May 22, 2015):
I had a static lock in the tests to fix that. Each TestInitialize would lock and TestCleanup would unlock.
Supposedly, you can get MSTest to not run concurrently as well but I was too lazy to look into it.