From c930f7fa3988feada02b44a0d169c58191b7e091 Mon Sep 17 00:00:00 2001 From: Ian Butterworth Date: Wed, 29 Nov 2023 11:06:14 -0500 Subject: [PATCH] mark summarysize test as broken with TODO --- test/reading.jl | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/test/reading.jl b/test/reading.jl index 672d4a0c..a6ce7c27 100644 --- a/test/reading.jl +++ b/test/reading.jl @@ -130,7 +130,8 @@ if occursin("annie_oakley", name) framestack = VideoIO.load(testvid_path) @test length(framestack) == VideoIO.TestVideos.videofiles[name].numframes - if VERSION < v"1.6.3" + # TODO: Replace this with a content check as summarysize is not stable across julia versions + if VERSION < v"1.6.3" || VERSION > v"1.11.0-0" @test_broken Base.summarysize(framestack) == VideoIO.TestVideos.videofiles[name].summarysize else @test Base.summarysize(framestack) == VideoIO.TestVideos.videofiles[name].summarysize @@ -138,7 +139,8 @@ f = File{DataFormat{:OGG}}(testvid_path) framestack = VideoIO.fileio_load(f) @test length(framestack) == VideoIO.TestVideos.videofiles[name].numframes - if VERSION < v"1.6.3" + # TODO: Replace this with a content check as summarysize is not stable across julia versions + if VERSION < v"1.6.3" || VERSION > v"1.11.0-0" @test_broken Base.summarysize(framestack) == VideoIO.TestVideos.videofiles[name].summarysize else @test Base.summarysize(framestack) == VideoIO.TestVideos.videofiles[name].summarysize