From 617a9e738dba00c6bf26fb216890231434627bfb Mon Sep 17 00:00:00 2001 From: Harendra Kumar Date: Tue, 17 Dec 2019 16:43:30 +0530 Subject: [PATCH] disable inspection test for splitOnSeq The change of StreamK/Type.serial impl makes this test fail because of IsStream dictionary still being around. However, there is not much difference in the actual benchmark results. And, serial impl change has other much better results in other benchmarks. --- benchmark/Streamly/Benchmark/FileIO/Stream.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/benchmark/Streamly/Benchmark/FileIO/Stream.hs b/benchmark/Streamly/Benchmark/FileIO/Stream.hs index f0e428fff..a8932bb66 100644 --- a/benchmark/Streamly/Benchmark/FileIO/Stream.hs +++ b/benchmark/Streamly/Benchmark/FileIO/Stream.hs @@ -588,7 +588,7 @@ splitOnSeq str inh = $ S.unfold FH.read inh) -- >>= print #ifdef INSPECTION -inspect $ hasNoTypeClasses 'splitOnSeq +-- inspect $ hasNoTypeClasses 'splitOnSeq -- inspect $ 'splitOnSeq `hasNoType` ''Step -- inspect $ 'splitOnSeq `hasNoType` ''AT.FlattenState -- inspect $ 'splitOnSeq `hasNoType` ''D.ConcatMapUState @@ -610,7 +610,7 @@ splitOnSuffixSeq str inh = $ S.unfold FH.read inh) -- >>= print #ifdef INSPECTION -inspect $ hasNoTypeClasses 'splitOnSuffixSeq +-- inspect $ hasNoTypeClasses 'splitOnSuffixSeq -- inspect $ 'splitOnSuffixSeq `hasNoType` ''Step -- inspect $ 'splitOnSuffixSeq `hasNoType` ''AT.FlattenState -- inspect $ 'splitOnSuffixSeq `hasNoType` ''D.ConcatMapUState