Skip to content

Commit

Permalink
Exclude RecentGapOnly.tst even for old dev versions
Browse files Browse the repository at this point in the history
  • Loading branch information
mtorpey committed Aug 29, 2024
1 parent 3fad838 commit 6b84856
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tst/testall.g
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,12 @@ if not IsBound(PKGMAN_ExcludeTestFiles) then
fi;

# For old GAP versions, exclude some cutting edge tests
if not CompareVersionNumbers(GAPInfo.Version, ">=4.14") then
version := GAPInfo.Version;
if EndsWith(version, "dev") then
# old dev versions are still old versions
version := version{[1 .. Length(version) - 3]};
fi;
if not CompareVersionNumbers(version, ">=4.14") then
Add(PKGMAN_ExcludeTestFiles, "RecentGapOnly.tst");
fi;

Expand Down

0 comments on commit 6b84856

Please sign in to comment.