Skip to content

Commit 662778a

Browse files
Merge pull request #73 from hanneskaeufler/hk-stricter-finished-check
Be more strict about finishing. Only an F can also mean failing tests…
2 parents 64e0834 + be501f0 commit 662778a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/crytic/mutation/isolated_mutation.cr

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ module Crytic::Mutation
1717
def run : Result
1818
mutated = @environment.perform_mutation
1919
process_result = run(mutated)
20-
success_messages_in_output = /F/ =~ process_result[:output]
20+
success_messages_in_output = /Finished/ =~ process_result[:output]
2121
status = if process_result[:exit_code] == ProcessRunner::SUCCESS
2222
Status::Uncovered
2323
elsif process_result[:exit_code] == ProcessRunner::TIMEOUT

0 commit comments

Comments
 (0)