Coyote is a library and tool for testing concurrent C# code and deterministically reproducing bugs.
Перейти к файлу
notDhruv 96c414d48b original deactivation pct 2022-02-15 02:58:44 +00:00
.config upgrade to dotnet 6 (#255) 2021-11-18 10:33:42 -08:00
.github/workflows optimizations and hardening in binary rewriting (#260) 2021-12-08 19:50:10 -08:00
Common increased version to 1.4.2 (#269) 2022-01-11 16:44:49 -08:00
Scripts optimizations and hardening in binary rewriting (#260) 2021-12-08 19:50:10 -08:00
Source original deactivation pct 2022-02-15 02:58:44 +00:00
Tests support for actor delay fuzzing (#274) 2022-01-19 19:29:43 -08:00
Tools optimizations and hardening in binary rewriting (#260) 2021-12-08 19:50:10 -08:00
docs report num of controlled operations (#268) 2022-01-06 16:50:07 -08:00
.gitattributes update perf tests from previous refactoring (#90) 2020-10-30 15:28:41 -07:00
.gitignore assembly analysis pass that diffs IL contents for debugging (#249) 2021-10-31 23:34:42 -07:00
.travis.yml remove deployment step (#31) 2020-05-23 11:53:14 -07:00
Coyote.sln fixes in cross-assembly rewriting (#248) 2021-11-17 19:16:30 -08:00
History.md increased version to 1.4.2 (#269) 2022-01-11 16:44:49 -08:00
LICENSE Initial commit 2020-02-28 19:32:20 -08:00
NuGet.config simplify nuget config file (#130) 2021-03-03 15:42:09 -08:00
README.md updates to ci (#236) 2021-10-15 09:52:31 -07:00
SECURITY.md updated security readme to latest version 2020-04-03 10:09:25 -07:00
global.json simplify synchronization block logic (#265) 2022-01-05 14:46:43 -08:00
mkdocs-local.yml refactoring in rewriting and some other optimizations (#252) 2021-11-17 15:38:10 -08:00
mkdocs.yml refactoring in rewriting and some other optimizations (#252) 2021-11-17 15:38:10 -08:00

README.md

NuGet Open in Visual Studio Code Join the chat at https://gitter.im/Microsoft/coyote Follow on Twitter

CodeQL Build and Test CI

Coyote is a .NET library and tool designed to help ensure that your code is free of concurrency bugs.

It gives you the ability to reliably unit test the concurrency and other sources of nondeterminism (such as message re-orderings, timeouts and failures) in your C# code. In the heart of Coyote is a scheduler that takes control (via binary rewriting) of your program's execution during testing and is able to systematically explore the concurrency and nondeterminism to find safety and liveness bugs. The awesome thing is that once Coyote finds a bug it gives you the ability to fully reproduce it as many times as you want, making debugging and fixing the issue much easier.

Coyote is used by several teams in Azure to systematically test their distributed systems and services, finding hundreds of bugs before they manifest in production. In the words of an Azure service architect:

Coyote found several issues early in the dev process, this sort of issues that would usually bleed through into production and become very expensive to fix later.

See our documentation for more information about the project, case studies, tutorials and reference documentation.

Coyote is made with ❤️ by Microsoft Research.

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.

When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repositories using our CLA.

Code of Conduct

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.