From dc86e044761a132ddd7026f0f9555f958ba8046a Mon Sep 17 00:00:00 2001 From: Damien George Date: Thu, 20 May 2021 10:02:57 +1000 Subject: tests: Make float and framebuf tests skip or run on big-endian archs. Signed-off-by: Damien George --- tests/float/bytes_construct.py | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 tests/float/bytes_construct.py (limited to 'tests/float/bytes_construct.py') diff --git a/tests/float/bytes_construct.py b/tests/float/bytes_construct.py deleted file mode 100644 index 0806087b0..000000000 --- a/tests/float/bytes_construct.py +++ /dev/null @@ -1,12 +0,0 @@ -# test construction of bytearray from array with float type - -try: - from uarray import array -except ImportError: - try: - from array import array - except ImportError: - print("SKIP") - raise SystemExit - -print(bytes(array("f", [1, 2.3]))) -- cgit v1.2.3