Skip to content

Commit

Permalink
Remove second argument from STOP_TEST invocations (#5823)
Browse files Browse the repository at this point in the history
This extra argument has been unused and optional for many years.

Also rename tst/testinstall/opers/IsInfiniteAbelianizationGroup.g
to .tst, it had the bad wrong extension since 2018.
  • Loading branch information
fingolfin authored Oct 24, 2024
1 parent 0cdbcc4 commit 11a8e61
Show file tree
Hide file tree
Showing 262 changed files with 262 additions and 262 deletions.
2 changes: 1 addition & 1 deletion benchmark/doublecoset/doublecoset1.tst
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ gap> dc:=DoubleCosetRepsAndSizes(g,u,u);;
gap> Length(dc);Sum(dc,x->x[2])=Size(g);
191
true
gap> STOP_TEST( "doublecoset1.tst", 1);
gap> STOP_TEST("doublecoset1.tst");
2 changes: 1 addition & 1 deletion benchmark/doublecoset/doublecoset2.tst
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ gap> dc:=DoubleCosetRepsAndSizes(g,u,u);;
gap> Length(dc);Sum(dc,x->x[2])=Size(g);
57
true
gap> STOP_TEST( "doublecoset2.tst", 1);
gap> STOP_TEST("doublecoset2.tst");
2 changes: 1 addition & 1 deletion benchmark/doublecoset/doublecoset3.tst
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ gap> dc:=DoubleCosetRepsAndSizes(g,u,u);;
gap> Length(dc);Sum(dc,x->x[2])=Size(g);
913
true
gap> STOP_TEST( "doublecoset3.tst", 1);
gap> STOP_TEST("doublecoset3.tst");
2 changes: 1 addition & 1 deletion tst/extractmanuals.g
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ WriteExamplesTst := function(directory, meta)
AppendTo(output, "\n");
fi;
od;
AppendTo(output, "\n\n\ngap> STOP_TEST(\"", chname, "\", 0);");
AppendTo(output, "\n\n\ngap> STOP_TEST(\"", chname, "\");");
fi;
od;
return chapterfiles;
Expand Down
2 changes: 1 addition & 1 deletion tst/testbugfix/2018-12-06-GroupWithGenerators.tst
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ gap> GroupByGenerators( Group( (1,2) ) );
Group([ (), (1,2) ])
gap> GroupWithGenerators( Group( (1,2) ) );
Group([ (), (1,2) ])
gap> STOP_TEST("2018-12-06-GroupWithGenerators.tst", 1);
gap> STOP_TEST("2018-12-06-GroupWithGenerators.tst");
2 changes: 1 addition & 1 deletion tst/testbugfix/2022-09-09-MinimalGeneratingSet.tst
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ gap> G:=Group((1,2),(2,3),(3,4));;
gap> H:=Image(IsomorphismFpGroup(G));;
gap> MinimalGeneratingSet(H);
[ F1^-1*F2^-1*F3^-1, F1^-1*F2^-1*F3^-1*F2^-1*F1^-1 ]
gap> STOP_TEST("2022-09-09-MinimalGeneratingSet.tst", 1);
gap> STOP_TEST("2022-09-09-MinimalGeneratingSet.tst");
2 changes: 1 addition & 1 deletion tst/testextra/ctblpope.tst
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,4 @@ gap> if IsPackageMarkedForLoading( "ctbllib", "" ) then
> fi;

##
gap> STOP_TEST( "ctblpope.tst", 1 );
gap> STOP_TEST("ctblpope.tst");
2 changes: 1 addition & 1 deletion tst/testextra/grpauto.tst
Original file line number Diff line number Diff line change
Expand Up @@ -323,4 +323,4 @@ gap> gp2:=Group((3,19,53,9,34)(6,29,69,15,48)(8,72,52,33,18)
> (174,178,233,203,238)(177,217,244,190,194));;
gap> IsomorphismGroups(gp1,gp2)=fail;
false
gap>STOP_TEST("grpauto.tst",1);
gap>STOP_TEST("grpauto.tst");
2 changes: 1 addition & 1 deletion tst/testextra/grpperm.tst
Original file line number Diff line number Diff line change
Expand Up @@ -266,4 +266,4 @@ gap> Length(p);
gap> p:=List(p,x->Image(IsomorphismPermGroup(x)));;
gap> List(p,Size);
[ 61440, 61440, 61440, 61440 ]
gap> STOP_TEST( "grpperm.tst", 1);
gap> STOP_TEST("grpperm.tst");
2 changes: 1 addition & 1 deletion tst/testextra/helpsys.tst
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ gap> for i in [1..Length(HELP_LAST.TOPICS)] do HELP(String(i)); od;
gap> PAGER_EXTERNAL:=savepager;;
gap> MakeReadOnlyGlobal("PAGER_EXTERNAL");
gap> SetUserPreference("Pager",savepagerprefs);
gap> STOP_TEST( "helpsys.tst", 1);
gap> STOP_TEST("helpsys.tst");
2 changes: 1 addition & 1 deletion tst/testextra/objmap.tst
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ gap> SortedList(OBJ_MAP_KEYS(y)) = keyresult;
true
gap> SortedList(OBJ_MAP_VALUES(y)) = valresult;
true
gap> STOP_TEST( "objmap.tst", 1);
gap> STOP_TEST("objmap.tst");
2 changes: 1 addition & 1 deletion tst/testextra/objset.tst
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ gap> GASMAN("collect");
gap> result := List([1..setvals], x -> [x,[x]]);;
gap> SortedList(OBJ_SET_VALUES(y)) = result;
true
gap> STOP_TEST( "objset.tst", 1);
gap> STOP_TEST("objset.tst");
2 changes: 1 addition & 1 deletion tst/testextra/perfect.tst
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ gap> gp:=FpGroupCocycle(coh,coh.cohomology[1],true);;
gap> gp:=Image(IsomorphismPermGroup(gp));;
gap> Size(Group(GeneratorsOfGroup(gp)));
61440
gap> STOP_TEST( "perfect.tst", 1);
gap> STOP_TEST("perfect.tst");
2 changes: 1 addition & 1 deletion tst/testextra/small_groups2.tst
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ gap> for n in [1..Length(NAMES_OF_SMALL_GROUPS)] do
> od;
gap> bad;
[ ]
gap> STOP_TEST( "small_groups2.tst", 1);
gap> STOP_TEST("small_groups2.tst");
2 changes: 1 addition & 1 deletion tst/testextra/switch_obj.tst
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,4 @@ gap> checkswap := function(switches)
> end;;
gap> ForAll(Combinations([1,2,3,4,5,6,7,8,9]), checkswap);
true
gap> STOP_TEST( "mptr.tst", 1);
gap> STOP_TEST("mptr.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/ElmsBlist.tst
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ gap> doTests := function(startrange, lengthrange)
> od;
> end;;
gap> doTests([1..64],[0..128]);
gap> STOP_TEST("ElmsBlist.tst", 1);
gap> STOP_TEST("ElmsBlist.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/MatrixObj/ConcatenationOfVectors.tst
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ gap> vv := ConcatenationOfVectors( [ v3, v4, v3 ] );
gap> Unpack( vv );
[ Z(5)^0, Z(5), Z(5)^3, Z(5)^2, 0*Z(5), Z(5)^0, Z(5)^0, Z(5), Z(5), Z(5)^2,
0*Z(5), Z(5)^0, Z(5)^0, Z(5), Z(5)^3, Z(5)^2, 0*Z(5), Z(5)^0 ]
gap> STOP_TEST("ConcatenationOfVectors.tst",1);
gap> STOP_TEST("ConcatenationOfVectors.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/MatrixObj/DistanceOfVectors.tst
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ gap> DistanceOfVectors( v5, v6 );
3
gap> DistanceOfVectors( v4, v6 );
5
gap> STOP_TEST( "DistanceOfVectors.tst", 1);
gap> STOP_TEST("DistanceOfVectors.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/MatrixObj/ElementaryMatrices.tst
Original file line number Diff line number Diff line change
Expand Up @@ -119,4 +119,4 @@ gap> mat := Matrix( [[2,4,5],[7,11,-4],[-3,20,0]]);;
gap> AddMatrixColumnsLeft(mat,1,3,-3);
gap> mat= Matrix( [ [-13,4,5], [19,11,-4], [-3,20,0]]);
true
gap> STOP_TEST("ElementaryMatrices.tst",1);
gap> STOP_TEST("ElementaryMatrices.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/MatrixObj/ExtractSubvector.tst
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ gap> ExtractSubVector( v1, [1,2,4] );
<plist vector over Rationals of length 3>
gap> Unpack( last );
[ 1, 2, 4 ]
gap> STOP_TEST("ExtractSubVector.tst",1);
gap> STOP_TEST("ExtractSubVector.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/MatrixObj/ListOp.tst
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ gap> List( v );
[ ]
gap> List( v, DegreeFFE );
[ ]
gap> STOP_TEST( "ListOp.tst", 1);
gap> STOP_TEST("ListOp.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/MatrixObj/PositionNonZero.tst
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ gap> v6 := Vector(GF(5), l3*One(GF(5)));
[ 0*Z(5), 0*Z(5), 0*Z(5), 0*Z(5), 0*Z(5), 0*Z(5) ]
gap> PositionNonZero( v6 );
7
gap> STOP_TEST( "PositionNonZero.tst", 1);
gap> STOP_TEST("PositionNonZero.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/MatrixObj/TraceMat.tst
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ gap> TraceMat( m2 );
5
gap> TraceMat( m3 );
Z(7)^5
gap> STOP_TEST( "TraceMat.tst", 1);
gap> STOP_TEST("TraceMat.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/MatrixObj/Unpack.tst
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ gap> v5 := Vector(GF(5), ll*One(GF(5)));
[ Z(5)^0, Z(5), Z(5)^3, Z(5)^2, 0*Z(5), Z(5)^0 ]
gap> Unpack( v5 );
[ Z(5)^0, Z(5), Z(5)^3, Z(5)^2, 0*Z(5), Z(5)^0 ]
gap> STOP_TEST( "Unpack.tst", 1);
gap> STOP_TEST("Unpack.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/MatrixObj/WeightOfVector.tst
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ gap> v6 := Vector(GF(5), l3*One(GF(5)));
[ 0*Z(5), 0*Z(5), 0*Z(5), 0*Z(5), 0*Z(5), 0*Z(5) ]
gap> WeightOfVector( v6 );
0
gap> STOP_TEST( "WeightOfVector.tst", 1);
gap> STOP_TEST("WeightOfVector.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/alghom.tst
Original file line number Diff line number Diff line change
Expand Up @@ -101,4 +101,4 @@ gap> Q:=R/id;
<ring with 1 generator>
gap> Elements(Q);
[ 0*q1, q1, 2*q1, 3*q1, 4*q1, 5*q1, 6*q1, -q1 ]
gap> STOP_TEST( "alghom.tst", 1);
gap> STOP_TEST("alghom.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/algmat.tst
Original file line number Diff line number Diff line change
Expand Up @@ -285,4 +285,4 @@ true
# missing: natural modules, abstract expressions, field multiplicity

#############################################################################
gap> STOP_TEST( "algmat.tst", 1);
gap> STOP_TEST("algmat.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/algrep.tst
Original file line number Diff line number Diff line change
Expand Up @@ -137,4 +137,4 @@ gap> V:= BiAlgebraModuleByGenerators( A, A, \*, \*, [ [1,0,0] ], "basis" );
[ 3, 3 ] ) (right)>

#
gap> STOP_TEST( "algrep.tst", 1);
gap> STOP_TEST("algrep.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/algsc.tst
Original file line number Diff line number Diff line change
Expand Up @@ -929,4 +929,4 @@ gap> List( GeneratorsOfAlgebra( A ), x -> x^2 );
[ s1, t1, 0*s1, 0*s1, 0*s1, 0*s1, 0*s1, 0*s1 ]

#############################################################################
gap> STOP_TEST( "algsc.tst", 1);
gap> STOP_TEST("algsc.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/associate.tst
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,4 @@ gap> for A in [ GF(5), Integers, Rationals ] do
> od;

#
gap> STOP_TEST("associate.tst", 1);
gap> STOP_TEST("associate.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/attribute.tst
Original file line number Diff line number Diff line change
Expand Up @@ -103,4 +103,4 @@ gap> SetStabChainMutable(grp, [3,4]);
gap> StabChainMutable(grp);
[ 3, 4 ]
gap> SetInfoLevel(InfoAttributes, attributeinfo);
gap> STOP_TEST("attribute.tst", 1);
gap> STOP_TEST("attribute.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/bitfields.tst
Original file line number Diff line number Diff line change
Expand Up @@ -77,4 +77,4 @@ gap> NameFunction(bf.booleanSetters[1]);
"<boolean field setter>"

#
gap> STOP_TEST("bitfields.tst", 1);
gap> STOP_TEST("bitfields.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/boolean.tst
Original file line number Diff line number Diff line change
Expand Up @@ -123,4 +123,4 @@ gap> function() return IsAssociative and IsAssociative; end();
<Property "IsAssociative">

#
gap> STOP_TEST( "boolean.tst", 1);
gap> STOP_TEST("boolean.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/bound.tst
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@ gap> Display(function(l,n) return IsBound(l.(n));end);
function ( l, n )
return IsBound( l.(n) );
end
gap> STOP_TEST("bound.tst", 1);
gap> STOP_TEST("bound.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/break.tst
Original file line number Diff line number Diff line change
Expand Up @@ -144,4 +144,4 @@ gap> f := function() local i; i := 1; repeat i := i + 1; break; until i in [1..5
gap> f();

#
gap> STOP_TEST("break.tst", 1);
gap> STOP_TEST("break.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/callfunc.tst
Original file line number Diff line number Diff line change
Expand Up @@ -149,4 +149,4 @@ gap> f := function() return o2(1,2,3,4,6,7); end;; f();
Error, Function Calls: <func> must return a value
gap> f := function() return o2(1,2,3,4,5,6,7); end;; f();
Error, Function Calls: <func> must return a value
gap> STOP_TEST( "callfunc.tst", 1);
gap> STOP_TEST("callfunc.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/coder.tst
Original file line number Diff line number Diff line change
Expand Up @@ -337,4 +337,4 @@ function() for PrintObj{[1]} in [1,2,3] do od; end();
^

#
gap> STOP_TEST("coder.tst", 1);
gap> STOP_TEST("coder.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/coding.tst
Original file line number Diff line number Diff line change
Expand Up @@ -130,4 +130,4 @@ function ( x )
end

#
gap> STOP_TEST("coding.tst", 1);
gap> STOP_TEST("coding.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/coll.tst
Original file line number Diff line number Diff line change
Expand Up @@ -688,4 +688,4 @@ gap> Difference(M2, [1]);
[ 0 ]

#
gap> STOP_TEST( "coll.tst", 1);
gap> STOP_TEST("coll.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/combinat.tst
Original file line number Diff line number Diff line change
Expand Up @@ -558,4 +558,4 @@ gap> AssociatedPartition(Concatenation([7],ListWithIdenticalEntries(99,1)));
[ 100, 1, 1, 1, 1, 1, 1 ]

# that's it for the combinatorial package ##################################
gap> STOP_TEST( "combinat.tst", 1);
gap> STOP_TEST("combinat.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/cset.tst
Original file line number Diff line number Diff line change
Expand Up @@ -145,4 +145,4 @@ gap> RightCoset(Group( [ [ Z(3)^0, 0*Z(3) ], [ 0*Z(3), Z(3)^0 ] ] ),
true

#
gap> STOP_TEST("cset.tst", 1);
gap> STOP_TEST("cset.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/ctblfuns.tst
Original file line number Diff line number Diff line change
Expand Up @@ -91,4 +91,4 @@ gap> chi = chi^0;
true

#
gap> STOP_TEST( "ctblfuns.tst", 1);
gap> STOP_TEST("ctblfuns.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/ctblmoli.tst
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,4 @@ gap> ser = ser2;
true

#
gap> STOP_TEST( "ctblmoli.tst", 1);
gap> STOP_TEST("ctblmoli.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/ctblmono.tst
Original file line number Diff line number Diff line change
Expand Up @@ -328,4 +328,4 @@ gap> IsMinimalNonmonomial( S4 );
false

##
gap> STOP_TEST( "ctblmono.tst", 1);
gap> STOP_TEST("ctblmono.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/ctblsolv.tst
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ gap> for pair in [ [ 18, 3 ], [ 27, 3 ], [ 36, 7 ], [ 50, 3 ], [ 54, 4 ] ] do
> Error( IdGroup( G ) );
> fi;
> od;
gap> STOP_TEST( "ctblsolv.tst", 1);
gap> STOP_TEST("ctblsolv.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/cyclotom.tst
Original file line number Diff line number Diff line change
Expand Up @@ -353,4 +353,4 @@ gap> SetX(r, r, {i,j} -> (sets[i]=sets[j]) = (i=j));
[ true ]

#
gap> STOP_TEST( "cyclotom.tst", 1);
gap> STOP_TEST("cyclotom.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/depth.tst
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ Error, no method found! For debugging hints type ?Recovery from NoMethodFound
Error, no 1st choice method found for `IsCommutative' on 1 arguments
gap> dive(80);
Depth 80
gap> STOP_TEST( "depth.tst", 1);
gap> STOP_TEST("depth.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/dict.tst
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ gap> for i in [1..1000] do
> od;
gap> dict;
<sparse hash table of size 1002>
gap> STOP_TEST( "dict.tst", 1);
gap> STOP_TEST("dict.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/dir.tst
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ gap> if ARCH_IS_WINDOWS() then
> ExternalFilename(Directory("/cygdrive/Q/"), "filename") = "/cygdrive/Q/filename","\n");
> fi;
truetruetruetrue
gap> STOP_TEST("dir.tst", 1);
gap> STOP_TEST("dir.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/dt.tst
Original file line number Diff line number Diff line change
Expand Up @@ -121,4 +121,4 @@ gap> Rules(collH);
f8^-1*f10*f8*f10^-1, f9^-1*f10*f9*f10^-1 ]

#
gap> STOP_TEST("dt.tst", 1);
gap> STOP_TEST("dt.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/eigen.tst
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ gap> GeneralisedEigenvalues(GF(3), A );
gap> GeneralisedEigenspaces(GF(3),A);
[ <vector space over GF(3), with 1 generator>,
<vector space over GF(3), with 3 generators> ]
gap> STOP_TEST( "eigen.tst", 1);
gap> STOP_TEST("eigen.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/euclidean.tst
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,4 @@ gap> checkEuclideanRing(Integers mod ((2*3*5*7)^3));
true

#
gap> STOP_TEST( "euclidean.tst", 1);
gap> STOP_TEST("euclidean.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/ffe.tst
Original file line number Diff line number Diff line change
Expand Up @@ -513,4 +513,4 @@ gap> ForAll(qs,x->Rochambeau(GF(x))=0);
true

#
gap> STOP_TEST( "ffe.tst", 1);
gap> STOP_TEST("ffe.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/ffeconway.tst
Original file line number Diff line number Diff line change
Expand Up @@ -795,4 +795,4 @@ gap> SetInfoLevel(InfoPrimeInt,iPI);
gap> SetInfoLevel(InfoFactor,iF);
gap> if IsBound(InfoFactInt) then SetInfoLevel(InfoFactInt,iFI); fi;
gap> SetInfoLevel(InfoWarning,iW);
gap> STOP_TEST( "ffeconway.tst", 1);
gap> STOP_TEST("ffeconway.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/files/files.tst
Original file line number Diff line number Diff line change
Expand Up @@ -108,4 +108,4 @@ gap> testRead("empty.txt", {} -> InputTextFile(Filename(dir, "empty.txt")),
gap> testRead("lines string", {} -> InputTextString(Concatenation(lines)), lines, true);
gap> testRead("empty string", {} -> InputTextString(""), [], true);
gap> testRead("dummy input", {} -> InputTextNone(), [], true);
gap> STOP_TEST("files.tst", 1);
gap> STOP_TEST("files.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/float.tst
Original file line number Diff line number Diff line change
Expand Up @@ -821,4 +821,4 @@ gap> DisplayString(1.3);
"1.3\n"

#
gap> STOP_TEST( "float.tst", 1);
gap> STOP_TEST("float.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/flush.tst
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ gap> cheeseval;
[ 2 ]
gap> MakeReadWriteGlobal("cheesefun"); UnbindGlobal("cheesefun");
gap> MakeReadWriteGlobal("cheeseval"); UnbindGlobal("cheeseval");
gap> STOP_TEST("flush.tst", 1);
gap> STOP_TEST("flush.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/format.tst
Original file line number Diff line number Diff line change
Expand Up @@ -104,4 +104,4 @@ gap> PrintFormatted("abc{3}\n", 2);
Error, out of bounds -- asked for {3} when there are only 1 arguments
gap> PrintFormatted("abc{x}\n", rec(y := 2));
Error, no record member 'x'
gap> STOP_TEST("format.tst",1);
gap> STOP_TEST("format.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/fpmon.tst
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ gap> y in S;
true

#
gap> STOP_TEST( "fpmon.tst", 1);
gap> STOP_TEST("fpmon.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/function.tst
Original file line number Diff line number Diff line change
Expand Up @@ -340,4 +340,4 @@ gap> funcloop(x -> ([ [ x ] ]{[ 1 ]}{[ 1 ]}){[ 1 ]}); # EXPR_ELMS_LIST
function ( x ) return ([ [ x ] ]{[ 1 ]}{[ 1 ]}){[ 1 ]}; end

#
gap> STOP_TEST("function.tst", 1);
gap> STOP_TEST("function.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/gaussian.tst
Original file line number Diff line number Diff line change
Expand Up @@ -86,4 +86,4 @@ gap> Factors( GaussianIntegers, 1+2*E(4) );
[ 1+2*E(4) ]
gap> Factors( GaussianIntegers, 5-E(4) );
[ 1-E(4), 3+2*E(4) ]
gap> STOP_TEST( "gaussian.tst", 1);
gap> STOP_TEST("gaussian.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/gprdmat.tst
Original file line number Diff line number Diff line change
Expand Up @@ -88,4 +88,4 @@ gap> Image(emb);
<matrix group with 3 generators>

#
gap> STOP_TEST("gprdmat.tst", 1);
gap> STOP_TEST("gprdmat.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/grp/basic.tst
Original file line number Diff line number Diff line change
Expand Up @@ -571,4 +571,4 @@ Error, no method found! For debugging hints type ?Recovery from NoMethodFound
Error, no 1st choice method found for `SymmetricGroupCons' on 2 arguments

#
gap> STOP_TEST("basic.tst", 1);
gap> STOP_TEST("basic.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/grp/classic-G.tst
Original file line number Diff line number Diff line change
Expand Up @@ -280,4 +280,4 @@ gap> for d in [ 1 .. 10 ] do
> od;

#
gap> STOP_TEST("classic-G.tst", 1);
gap> STOP_TEST("classic-G.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/grp/classic-PG.tst
Original file line number Diff line number Diff line change
Expand Up @@ -139,4 +139,4 @@ gap> PGammaL( 3, 6 );
Error, usage: GeneralLinearGroup( [<filter>, ]<d>, <R> )

#
gap> STOP_TEST("classic-PG.tst", 1);
gap> STOP_TEST("classic-PG.tst");
2 changes: 1 addition & 1 deletion tst/testinstall/grp/classic-PS.tst
Original file line number Diff line number Diff line change
Expand Up @@ -85,4 +85,4 @@ gap> PSigmaL( 3, 6 );
Error, usage: SpecialLinearGroup( [<filter>, ]<d>, <R> )

#
gap> STOP_TEST("classic-PS.tst", 1);
gap> STOP_TEST("classic-PS.tst");
Loading

0 comments on commit 11a8e61

Please sign in to comment.