Skip to content

Commit

Permalink
added two packages to isCapturable exclusion list
Browse files Browse the repository at this point in the history
  • Loading branch information
mahrud committed Oct 28, 2024
1 parent 0f5ab22 commit bcc2887
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion M2/Macaulay2/m2/examples.m2
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,10 @@ isCapturable = (inputs, pkg, isTest) -> (
inputs = replace("-\\*.*?\\*-", "", inputs);
-- TODO: remove this when the effects of capture on other packages is reviewed
(isTest or match({"FirstPackage", "Macaulay2Doc"}, pkg#"pkgname"))
and not match({"MultiprojectiveVarieties", "EngineTests","ThreadedGB","RunExternalM2","SpecialFanoFourfolds"}, pkg#"pkgname")
and not match({
"FastMinors", "TerraciniLoci",
"MultiprojectiveVarieties", "SpecialFanoFourfolds",
"EngineTests", "ThreadedGB", "RunExternalM2"}, pkg#"pkgname")
and not (match({"Cremona"}, pkg#"pkgname") and version#"pointer size" == 4)
-- FIXME: these are workarounds to prevent bugs, in order of priority for being fixed:
and not match("(gbTrace|NAGtrace)", inputs) -- cerr/cout directly from engine isn't captured
Expand Down

0 comments on commit bcc2887

Please sign in to comment.