fmt: fix alignment of enumeration types (#21999)

This commit is contained in:
yuyi 2024-08-07 20:46:50 +08:00 committed by GitHub
parent 3247b98bb5
commit 79ee4ae046
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
51 changed files with 543 additions and 479 deletions

View file

@ -4,11 +4,11 @@ import time
pub enum MessageKind {
compile_begin // sent right before *each* _test.v file compilation, the resulting status is not known yet, but the _test.v file itself is
compile_end // sent right after *each* _test.v file compilation, the message contains the output of that compilation
cmd_begin // sent right before *each* _test.v file execution, the resulting status is not known yet, but the _test.v file itself is
cmd_end // sent right after *each* _test.v file execution, the message contains the output of that execution
compile_end // sent right after *each* _test.v file compilation, the message contains the output of that compilation
cmd_begin // sent right before *each* _test.v file execution, the resulting status is not known yet, but the _test.v file itself is
cmd_end // sent right after *each* _test.v file execution, the message contains the output of that execution
//
ok // success of a _test.v file
ok // success of a _test.v file
fail // failed _test.v file, one or more assertions failed
skip // the _test.v file was skipped for some reason
info // a generic information message, detailing the actions of the `v test` program (some tests could be repeated for example, and the details are sent with an .info status)