From 20b111b33b1017f641e6cdd72f88345e55abdb1d Mon Sep 17 00:00:00 2001 From: John Readey Date: Thu, 5 Dec 2024 17:38:22 -0800 Subject: [PATCH] disable long_double test --- test/hl/test_dataset.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/test/hl/test_dataset.py b/test/hl/test_dataset.py index 6161a41..2daebb5 100644 --- a/test/hl/test_dataset.py +++ b/test/hl/test_dataset.py @@ -153,12 +153,11 @@ def test_missing_shape(self): with self.assertRaises(TypeError): self.f.create_dataset('foo') - # @ut.expectedFailure + @ut.expectedFailure def test_long_double(self): """ Confirm that the default dtype is float """ - # Expected failure on HSDS; skip with h5py - if config.get('use_h5py') or platform.system() == 'Windows': - self.assertTrue(False) + # TBD - Float128 not supported + self.assertTrue(False) dset = self.f.create_dataset('foo', (63,), dtype=np.longdouble) if platform.machine() in ['ppc64le']: