Skip to content

Commit

Permalink
Remove failing test file from gap bugfix in 32-bit
Browse files Browse the repository at this point in the history
  • Loading branch information
james-d-mitchell committed Feb 14, 2024
1 parent 4c6ab89 commit 08e1659
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions ci/run-gap-testbugfix.g
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,15 @@ for f in files_to_delete do
Exec(Concatenation("rm -f ", f));
fi;
od;

if GAPInfo.BytesPerVariable < 8 then
files_to_delete_32_bit := ["testbugfix/2024-01-25-MaxAbQuot.tst"]; # too much memory
for f in files_to_delete_32_bit do
f := Filename(DirectoriesLibrary("tst"), f);
if f <> fail then
Exec(Concatenation("rm -f ", f));
fi;
od;
fi;

Read(Filename(DirectoriesLibrary("tst"), "testbugfix.g"));

0 comments on commit 08e1659

Please sign in to comment.