From a074ae156cb44ea598232a32e334618c6f2c7496 Mon Sep 17 00:00:00 2001 From: Christopher Chalmers Date: Wed, 28 Aug 2024 23:39:15 +0100 Subject: [PATCH] Comment out context tests --- tests/Tex/LogParse.hs | 2 +- tests/Tex/PDF.hs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/Tex/LogParse.hs b/tests/Tex/LogParse.hs index 7c096ca..accc5bd 100644 --- a/tests/Tex/LogParse.hs +++ b/tests/Tex/LogParse.hs @@ -18,7 +18,7 @@ tests = texTests ++ latexTests ++ contextTests texTests = [checkErrors "tex error parse" tex] latexTests = [checkErrors "latex error parse" latex] -contextTests = [checkErrors "context error parse" context] +contextTests = [] -- [checkErrors "context error parse" context] https://github.com/cchalmers/texrunner/pull/12 withHead :: Monad m => [a] -> (a -> m ()) -> m () withHead (a:_) f = f a diff --git a/tests/Tex/PDF.hs b/tests/Tex/PDF.hs index 2da6592..df8183d 100644 --- a/tests/Tex/PDF.hs +++ b/tests/Tex/PDF.hs @@ -12,10 +12,10 @@ import Test.Framework.Providers.HUnit import System.Texrunner import System.Texrunner.Online -tests = [tex, latex, context, texOnline, latexOnline, contextOnline] +tests = texTests ++ latexTests -- ++ contextTests texTests = [tex, texOnline] latexTests = [latex, latexOnline] -contextTests = [context, contextOnline] +contextTests = [] -- [context, contextOnline] https://github.com/cchalmers/texrunner/pull/12 texDocument :: ByteString texDocument = "hi\\bye"