From 7a97e4351b4d78f64c3d1fbecd497481e649a83f Mon Sep 17 00:00:00 2001 From: Damien George Date: Mon, 18 Jan 2021 00:29:18 +1100 Subject: [PATCH] tests: Move native for test from pybnative to micropython. And make it generic so it can be run on any target. Signed-off-by: Damien George --- tests/{pybnative/for.py => micropython/native_for.py} | 2 +- tests/{pybnative/for.py.exp => micropython/native_for.py.exp} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename tests/{pybnative/for.py => micropython/native_for.py} (85%) rename tests/{pybnative/for.py.exp => micropython/native_for.py.exp} (100%) diff --git a/tests/pybnative/for.py b/tests/micropython/native_for.py similarity index 85% rename from tests/pybnative/for.py rename to tests/micropython/native_for.py index 50177a9ba..c640a8d08 100644 --- a/tests/pybnative/for.py +++ b/tests/micropython/native_for.py @@ -1,4 +1,4 @@ -import pyb +# test for native for loops @micropython.native diff --git a/tests/pybnative/for.py.exp b/tests/micropython/native_for.py.exp similarity index 100% rename from tests/pybnative/for.py.exp rename to tests/micropython/native_for.py.exp