Skip to content

Commit

Permalink
update test_runner.ri
Browse files Browse the repository at this point in the history
  • Loading branch information
StunxFS authored Nov 10, 2023
1 parent c8aab03 commit 6ada775
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions lib/core/src/test_runner.ri
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2023 The Rivet Developers. All rights reserved.
no// Copyright (C) 2023 The Rivet Developers. All rights reserved.
// Use of this source code is governed by an MIT license that can
// be found in the LICENSE file.

Expand Down Expand Up @@ -93,9 +93,10 @@ public struct TestRunner {
}
}
self.print_summary_tests();
//if self.fail_tests > 0 {
process_exit(1);
//}
if self.fail_tests > 0 {
console_writeln("exit?");
process_panic("panic!");
}
}
func print_summary_tests(&self) {
Expand Down

0 comments on commit 6ada775

Please sign in to comment.