Skip to content

Commit

Permalink
disable long_double test
Browse files Browse the repository at this point in the history
  • Loading branch information
jreadey committed Dec 6, 2024
1 parent 111a0e4 commit 20b111b
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions test/hl/test_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -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']:
Expand Down

0 comments on commit 20b111b

Please sign in to comment.