From 6e0b46533de0a9c2f5531a4b24467e1fdc68e8c8 Mon Sep 17 00:00:00 2001 From: Nicolas Date: Mon, 8 Dec 2025 14:09:14 +0100 Subject: [PATCH] verbosity of tests reduced, output for "Data to runner" deactivated --- tests/test_compile.py | 4 ++-- tests/test_compile_aarch64.py | 4 ++-- tests/test_compile_div.py | 4 ++-- tests/test_compile_math.py | 8 ++++---- tests/test_ops_aarch64.py | 4 ++-- tests/test_ops_armv7.py | 4 ++-- 6 files changed, 14 insertions(+), 14 deletions(-) diff --git a/tests/test_compile.py b/tests/test_compile.py index 9635ff1..f34eae4 100644 --- a/tests/test_compile.py +++ b/tests/test_compile.py @@ -71,8 +71,8 @@ def test_compile(): il.write_com(_binwrite.Command.END_COM) - print('* Data to runner:') - il.print() + #print('* Data to runner:') + #il.print() il.to_file('build/runner/test.copapy') diff --git a/tests/test_compile_aarch64.py b/tests/test_compile_aarch64.py index efc3990..3235a9d 100644 --- a/tests/test_compile_aarch64.py +++ b/tests/test_compile_aarch64.py @@ -66,8 +66,8 @@ def test_compile(): il.write_com(_binwrite.Command.END_COM) - print('* Data to runner:') - il.print() + #print('* Data to runner:') + #il.print() il.to_file('build/runner/test-arm64.copapy') diff --git a/tests/test_compile_div.py b/tests/test_compile_div.py index 87ee766..ff702fa 100644 --- a/tests/test_compile_div.py +++ b/tests/test_compile_div.py @@ -39,8 +39,8 @@ def test_compile(): il.write_com(_binwrite.Command.END_COM) - print('* Data to runner:') - il.print() + #print('* Data to runner:') + #il.print() il.to_file('build/runner/test.copapy') diff --git a/tests/test_compile_math.py b/tests/test_compile_math.py index 90385c3..d65f626 100644 --- a/tests/test_compile_math.py +++ b/tests/test_compile_math.py @@ -34,8 +34,8 @@ def test_compile_sqrt(): il.write_com(_binwrite.Command.END_COM) - print('* Data to runner:') - il.print() + #print('* Data to runner:') + #il.print() il.to_file('build/runner/test.copapy') @@ -68,8 +68,8 @@ def test_compile_log(): il.write_com(_binwrite.Command.END_COM) - print('* Data to runner:') - il.print() + #print('* Data to runner:') + #il.print() il.to_file('build/runner/test.copapy') diff --git a/tests/test_ops_aarch64.py b/tests/test_ops_aarch64.py index 2b0ffdd..26f026c 100644 --- a/tests/test_ops_aarch64.py +++ b/tests/test_ops_aarch64.py @@ -117,8 +117,8 @@ def test_compile(): dw.write_com(_binwrite.Command.END_COM) - print('* Data to runner:') - dw.print() + #print('* Data to runner:') + #dw.print() dw.to_file('build/runner/test-arm64.copapy') diff --git a/tests/test_ops_armv7.py b/tests/test_ops_armv7.py index 0c5d552..63a22eb 100644 --- a/tests/test_ops_armv7.py +++ b/tests/test_ops_armv7.py @@ -119,8 +119,8 @@ def test_compile(): dw.write_com(_binwrite.Command.END_COM) - print('* Data to runner:') - dw.print() + #print('* Data to runner:') + #dw.print() dw.to_file('build/runner/test-armv7.copapy')