diff options
Diffstat (limited to 'tests/extmod')
| -rw-r--r-- | tests/extmod/uctypes_ptr_le.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/extmod/uctypes_ptr_le.py b/tests/extmod/uctypes_ptr_le.py index 4125dd86f..d2ceb76f4 100644 --- a/tests/extmod/uctypes_ptr_le.py +++ b/tests/extmod/uctypes_ptr_le.py @@ -1,5 +1,9 @@ import uctypes +if sys.byteorder != "little": + print("SKIP") + sys.exit() + desc = { "ptr": (uctypes.PTR | 0, uctypes.UINT8), "ptr16": (uctypes.PTR | 0, uctypes.UINT16), |
