aboutsummaryrefslogtreecommitdiff
path: root/Math_Test.jai
diff options
context:
space:
mode:
Diffstat (limited to 'Math_Test.jai')
-rw-r--r--Math_Test.jai10
1 files changed, 5 insertions, 5 deletions
diff --git a/Math_Test.jai b/Math_Test.jai
index efc687c..781afa0 100644
--- a/Math_Test.jai
+++ b/Math_Test.jai
@@ -9,8 +9,8 @@
main :: () {
write_strings(
- "#========================#\n",
- "# Unit tests #\n"
+ "#=======================#\n",
+ "# Unit tests #\n"
);
test_op :: (operation: string, x: $Tx, y: $Ty, result: $Tr, type: Type, saturated: bool, remainder: Tr = 0) -> errors_found: int #expand {
@@ -159,8 +159,8 @@ main :: () {
if errors > 0 print("# Found % %!\n", errors, ifx errors == 1 then "error" else "errors"); else print(" No errors found.\n");
write_strings(
- "#========================#\n",
- "# Benchmarks #\n"
+ "#=======================#\n",
+ "# Benchmarks #\n"
);
#import "Random";
@@ -229,7 +229,7 @@ main :: () {
context.print_style.default_format_float = ff;
write_strings(
- " # (ops / usec) #\n",
+ " | (ops / usec) |\n",
" | generic | x64 asm |\n"
);