Skip to content

Commit

Permalink
[sources] Minor updates.
Browse files Browse the repository at this point in the history
  • Loading branch information
cipriancraciun committed Feb 12, 2022
1 parent fa82ab0 commit 5f66ec7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sources/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ pub fn execute_tests (identifier : &str, tests : &[TestCaseCompiled], transcript
if ! TESTS_FAIL_ON_FIRST_ERROR {
trace_warning! (transcript, 0x89d2290b => "executed `{}`: succeeded {} / failed {};" => (identifier, tests_succeeded, tests_failed), backend = transcript_backend);
} else {
trace_warning! (transcript, 0x89d2290b => "executed `{}`: aborted on first failure!" => (identifier), backend = transcript_backend);
trace_warning! (transcript, 0x9f1870a7 => "executed `{}`: aborted on first failure!" => (identifier), backend = transcript_backend);
}
}

Expand Down
2 changes: 1 addition & 1 deletion sources/tools_tester.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ pub fn main (inputs : ToolInputs) -> (Outcome<u32>) {
Ok (()) =>
succeed! (0),
Err (error) => {
trace_error! (transcript, 0x367496ef => "failed testing script!" => (), error = &error);
trace_error! (transcript, 0xf69e0d85 => "failed testing script!" => (), error = &error);
// NOTE: The `execute_tests_main` always reports the backtrace itself.
// error.backtrace_report (tracer_error! (transcript, 0x5681c4ca));
succeed! (1);
Expand Down

0 comments on commit 5f66ec7

Please sign in to comment.