summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_wave.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_wave.py')
-rw-r--r--Lib/test/test_wave.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/Lib/test/test_wave.py b/Lib/test/test_wave.py
index cf069ae..5be1251 100644
--- a/Lib/test/test_wave.py
+++ b/Lib/test/test_wave.py
@@ -48,6 +48,12 @@ class WavePCM16Test(audiotests.AudioWriteTests,
if sys.byteorder != 'big':
frames = audiotests.byteswap2(frames)
+ if sys.byteorder == 'big':
+ @unittest.expectedFailure
+ def test_unseekable_incompleted_write(self):
+ super().test_unseekable_incompleted_write()
+
+
class WavePCM24Test(audiotests.AudioWriteTests,
audiotests.AudioTestsWithSourceFile,
@@ -108,6 +114,11 @@ class WavePCM32Test(audiotests.AudioWriteTests,
if sys.byteorder != 'big':
frames = audiotests.byteswap4(frames)
+ if sys.byteorder == 'big':
+ @unittest.expectedFailure
+ def test_unseekable_incompleted_write(self):
+ super().test_unseekable_incompleted_write()
+
if __name__ == '__main__':
unittest.main()