This repository has been archived by the owner on Aug 22, 2024. It is now read-only.
forked from stacks-network/stacks-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
41 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,39 @@ | ||
# for specific packages creates the outpu | ||
# for specific packages creates the outpup | ||
|
||
# removes everything except .txt files | ||
|
||
#!/bin/bash | ||
|
||
# Create mutants directory | ||
mkdir -p mutants | ||
|
||
### Run mutation testing on the packages uncommented | ||
|
||
# Run mutation testing for stx-genesis package | ||
cargo mutants --package stx-genesis --output mutants/stx-genesis | ||
|
||
# Run mutation testing for pox-locking package | ||
cargo mutants --package pox-locking --output mutants/pox-locking | ||
|
||
# # Run mutation testing for libsigner package | ||
# cargo mutants --package libsigner --output mutants/libsigner | ||
|
||
# # Run mutation testing for libstackerdb package | ||
# cargo mutants --package libstackerdb --output mutants/libstackerdb | ||
|
||
# # Run mutation testing for stacks-common package | ||
# cargo mutants --package stacks-common --output mutants/stacks-common | ||
|
||
|
||
# # Run mutation testing for clarity package | ||
# cargo mutants --package clarity --output mutants/clarity | ||
|
||
|
||
# Run mutation testing for stacks-signer package - working, 10 min approx. | ||
# cargo mutants --package stacks-signer --output mutants/stacks-signer | ||
|
||
# Commented out mutation testing for stacks-node package due to test errors and long compile/testing time | ||
# cargo mutants --package stacks-node --output mutants/stacks-node | ||
|
||
# Commented out mutation testing for stackslib package due to long compile/testing time | ||
# cargo mutants --package stackslib --output mutants/stackslib |