mirror of
https://github.com/vlang/v.git
synced 2025-09-13 22:42:26 +03:00
all: change empty comment to newline (#22053)
This commit is contained in:
parent
38e23a76f3
commit
cb58db56ef
20 changed files with 31 additions and 33 deletions
|
@ -427,7 +427,7 @@ pub fn (mut ts TestSession) test() {
|
|||
ts.reporter.worker_threads_start(remaining_files, mut ts)
|
||||
// all the testing happens here:
|
||||
pool_of_test_runners.work_on_pointers(unsafe { remaining_files.pointers() })
|
||||
//
|
||||
|
||||
ts.benchmark.stop()
|
||||
ts.append_message(.sentinel, '', MessageThreadContext{ flow_id: '-1' }) // send the sentinel
|
||||
printing_thread.wait()
|
||||
|
|
|
@ -34,10 +34,10 @@ mut:
|
|||
session_stop(message string, mut ts TestSession) // called once per test session, in the main thread, after everything else, suitable for summaries, creating .xml reports, uploads etc.
|
||||
worker_threads_start(files []string, mut ts TestSession) // called once per test session, in the main thread, right before all the worker threads start
|
||||
worker_threads_finish(mut ts TestSession) // called once per test session, in the main thread, right after all the worker threads finish
|
||||
//
|
||||
|
||||
report(index int, log_msg LogMessage) // called once per each message, that will be shown (ok/fail/skip etc), only in the reporting thread.
|
||||
report_stop() // called just once after all messages are processed, only in the reporting thread, but before stop_session.
|
||||
//
|
||||
|
||||
// TODO: reconsider, whether the next methods, should be kept for all reporters, or just moved inside the normal reporter, to simplify the interface
|
||||
progress(index int, message string)
|
||||
update_last_line(index int, message string)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue