Skip to content

Commit

Permalink
Fix bug in makedoc
Browse files Browse the repository at this point in the history
  • Loading branch information
stertooy committed Dec 18, 2024
1 parent 0499779 commit 71f7343
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 173 deletions.
4 changes: 3 additions & 1 deletion makedoc.g
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@ tstFile := Concatenation(

if IsReadableFile( tstFile ) then
Info( InfoGAPDoc, 1, "#I Testing examples found in manual.\n" );
if Test( tstFile, rec( compareFunction := "uptowhitespace" ) ) then
correct := Test( tstFile, rec( compareFunction := "uptowhitespace" ) );
RemoveFile( tstFile );
if correct then
Info( InfoGAPDoc, 1, "#I All examples correct.\n" );
else
Info( InfoGAPDoc, 1, "#I One or more examples are incorrect.\n" );
Expand Down
172 changes: 0 additions & 172 deletions tst/twistedconjugacy01.tst

This file was deleted.

0 comments on commit 71f7343

Please sign in to comment.