From 096ff8b9ee216a8ca0345c00946799f8342570a6 Mon Sep 17 00:00:00 2001 From: Angus Gratton Date: Tue, 22 Jul 2025 11:17:23 +1000 Subject: [PATCH] tests/micropython: Rename viper boundary tests that depend on big int. These tests all depend on generating arbitrarily long (>64-bit) integers. It would be possible to have these tests work in this case I think, as the results are always masked to shorter values. But quite fiddly. So just rename them so they are automatically skipped if the target doesn't have big int support. This work was funded through GitHub Sponsors. Signed-off-by: Angus Gratton --- ...r16_store_boundary.py => viper_ptr16_store_boundary_intbig.py} | 0 ...e_boundary.py.exp => viper_ptr16_store_boundary_intbig.py.exp} | 0 ...r32_store_boundary.py => viper_ptr32_store_boundary_intbig.py} | 0 ...e_boundary.py.exp => viper_ptr32_store_boundary_intbig.py.exp} | 0 ...ptr8_store_boundary.py => viper_ptr8_store_boundary_intbig.py} | 0 ...re_boundary.py.exp => viper_ptr8_store_boundary_intbig.py.exp} | 0 6 files changed, 0 insertions(+), 0 deletions(-) rename tests/micropython/{viper_ptr16_store_boundary.py => viper_ptr16_store_boundary_intbig.py} (100%) rename tests/micropython/{viper_ptr16_store_boundary.py.exp => viper_ptr16_store_boundary_intbig.py.exp} (100%) rename tests/micropython/{viper_ptr32_store_boundary.py => viper_ptr32_store_boundary_intbig.py} (100%) rename tests/micropython/{viper_ptr32_store_boundary.py.exp => viper_ptr32_store_boundary_intbig.py.exp} (100%) rename tests/micropython/{viper_ptr8_store_boundary.py => viper_ptr8_store_boundary_intbig.py} (100%) rename tests/micropython/{viper_ptr8_store_boundary.py.exp => viper_ptr8_store_boundary_intbig.py.exp} (100%) diff --git a/tests/micropython/viper_ptr16_store_boundary.py b/tests/micropython/viper_ptr16_store_boundary_intbig.py similarity index 100% rename from tests/micropython/viper_ptr16_store_boundary.py rename to tests/micropython/viper_ptr16_store_boundary_intbig.py diff --git a/tests/micropython/viper_ptr16_store_boundary.py.exp b/tests/micropython/viper_ptr16_store_boundary_intbig.py.exp similarity index 100% rename from tests/micropython/viper_ptr16_store_boundary.py.exp rename to tests/micropython/viper_ptr16_store_boundary_intbig.py.exp diff --git a/tests/micropython/viper_ptr32_store_boundary.py b/tests/micropython/viper_ptr32_store_boundary_intbig.py similarity index 100% rename from tests/micropython/viper_ptr32_store_boundary.py rename to tests/micropython/viper_ptr32_store_boundary_intbig.py diff --git a/tests/micropython/viper_ptr32_store_boundary.py.exp b/tests/micropython/viper_ptr32_store_boundary_intbig.py.exp similarity index 100% rename from tests/micropython/viper_ptr32_store_boundary.py.exp rename to tests/micropython/viper_ptr32_store_boundary_intbig.py.exp diff --git a/tests/micropython/viper_ptr8_store_boundary.py b/tests/micropython/viper_ptr8_store_boundary_intbig.py similarity index 100% rename from tests/micropython/viper_ptr8_store_boundary.py rename to tests/micropython/viper_ptr8_store_boundary_intbig.py diff --git a/tests/micropython/viper_ptr8_store_boundary.py.exp b/tests/micropython/viper_ptr8_store_boundary_intbig.py.exp similarity index 100% rename from tests/micropython/viper_ptr8_store_boundary.py.exp rename to tests/micropython/viper_ptr8_store_boundary_intbig.py.exp