From 0c0cef9870e8215d67c79fefa6582849842001f9 Mon Sep 17 00:00:00 2001 From: Damien George Date: Sun, 26 Jul 2020 14:30:56 +1000 Subject: [PATCH] tests: Move .mpy import tests from import/ to micropython/ dir. These tests are specific to MicroPython so have a better home in the micropython/ test subdir, and putting them here allows them to be run by all targets, not just those that have access to the local filesystem (eg the unix port). Signed-off-by: Damien George --- .../{import/mpy_invalid.py => micropython/import_mpy_invalid.py} | 0 .../mpy_invalid.py.exp => micropython/import_mpy_invalid.py.exp} | 0 .../mpy_native.py => micropython/import_mpy_native_x64.py} | 0 .../import_mpy_native_x64.py.exp} | 0 4 files changed, 0 insertions(+), 0 deletions(-) rename tests/{import/mpy_invalid.py => micropython/import_mpy_invalid.py} (100%) rename tests/{import/mpy_invalid.py.exp => micropython/import_mpy_invalid.py.exp} (100%) rename tests/{import/mpy_native.py => micropython/import_mpy_native_x64.py} (100%) rename tests/{import/mpy_native.py.exp => micropython/import_mpy_native_x64.py.exp} (100%) diff --git a/tests/import/mpy_invalid.py b/tests/micropython/import_mpy_invalid.py similarity index 100% rename from tests/import/mpy_invalid.py rename to tests/micropython/import_mpy_invalid.py diff --git a/tests/import/mpy_invalid.py.exp b/tests/micropython/import_mpy_invalid.py.exp similarity index 100% rename from tests/import/mpy_invalid.py.exp rename to tests/micropython/import_mpy_invalid.py.exp diff --git a/tests/import/mpy_native.py b/tests/micropython/import_mpy_native_x64.py similarity index 100% rename from tests/import/mpy_native.py rename to tests/micropython/import_mpy_native_x64.py diff --git a/tests/import/mpy_native.py.exp b/tests/micropython/import_mpy_native_x64.py.exp similarity index 100% rename from tests/import/mpy_native.py.exp rename to tests/micropython/import_mpy_native_x64.py.exp