@@ -68,6 +68,7 @@ cargo install --version 24.7.1 cargo-mutants --locked
68
68
` ` ` sh
69
69
regex_pattern=$( sed ' s/[][()\.^$*+?{}|]/\\&/g' " mutants_by_package/stackslib.txt" | paste -sd' |' -)
70
70
71
+ RUST_BACKTRACE=1 BITCOIND_TEST=1 \
71
72
cargo mutants --timeout-multiplier 1.5 --no-shuffle -vV \
72
73
-F " $regex_pattern " \
73
74
-E " : replace .{1,2} with .{1,2} in " \
@@ -79,6 +80,7 @@ cargo install --version 24.7.1 cargo-mutants --locked
79
80
` ` ` sh
80
81
regex_pattern=$( sed ' s/[][()\.^$*+?{}|]/\\&/g' " mutants_by_package/testnet.txt" | paste -sd' |' -)
81
82
83
+ RUST_BACKTRACE=1 BITCOIND_TEST=1 \
82
84
cargo mutants --timeout-multiplier 1.5 --no-shuffle -vV \
83
85
-F " $regex_pattern " \
84
86
-E " : replace .{1,2} with .{1,2} in " \
@@ -90,6 +92,7 @@ cargo install --version 24.7.1 cargo-mutants --locked
90
92
` ` ` sh
91
93
regex_pattern=$( sed ' s/[][()\.^$*+?{}|]/\\&/g' " mutants_by_package/stacks-signer.txt" | paste -sd' |' -)
92
94
95
+ RUST_BACKTRACE=1 BITCOIND_TEST=1 \
93
96
cargo mutants --timeout-multiplier 1.5 --no-shuffle -vV \
94
97
-F " $regex_pattern " \
95
98
-E " : replace .{1,2} with .{1,2} in " \
@@ -118,10 +121,26 @@ MISSED stacks-signer/src/runloop.rs:424:9: replace <impl SignerRunLoop for Run
118
121
119
122
Example of fix for it
120
123
` ` ` sh
121
- RUST_BACKTRACE=1 BITCOIND_TEST=1 cargo mutants -vV -F " replace process_stackerdb_event" -E " : replace <impl SignerRunLoop for RunLoop<Signer, T>>::run_one_pass -> Option<Vec<SignerResult>> with None in " --test-tool=nextest -- --run-ignored all --fail-fast --test-threads 1
124
+ RUST_BACKTRACE=1 BITCOIND_TEST=1 \
125
+ cargo mutants -vV \
126
+ -F " replace process_stackerdb_event" \
127
+ -E " : replace <impl SignerRunLoop for RunLoop<Signer, T>>::run_one_pass -> Option<Vec<SignerResult>> with None in " \
128
+ --test-tool=nextest \
129
+ -- \
130
+ --run-ignored all \
131
+ --fail-fast \
132
+ --test-threads 1
122
133
` ` `
123
134
124
135
General command to run
125
136
` ` ` sh
126
- RUST_BACKTRACE=1 BITCOIND_TEST=1 cargo mutants -vV -F " replace process_stackerdb_event" -E " : replace [modify this] with [modify this] in " --test-tool=nextest -- --run-ignored all --fail-fast --test-threads 1
137
+ RUST_BACKTRACE=1 BITCOIND_TEST=1 \
138
+ cargo mutants -vV \
139
+ -F " replace process_stackerdb_event" \
140
+ -E " : replace [modify this] with [modify this] in " \
141
+ --test-tool=nextest \
142
+ -- \
143
+ --run-ignored all \
144
+ --fail-fast \
145
+ --test-threads 1
127
146
` ` `
0 commit comments