This file is indexed.

/usr/share/gap/pkg/scscp/tst/scscp.tst is in gap-scscp 2.1.4+ds-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
gap> START_TEST( "scscp.tst" );
gap> SetInfoLevel(InfoSCSCP,0);
gap> server := "localhost";;
gap> PingSCSCPservice( server, 26133 );
true
gap> EvaluateBySCSCP( "WS_Factorial", [10], server, 26133).object;
3628800
gap> EvaluateBySCSCP( "WS_IdGroup", [ SymmetricGroup(3) ], server, 26133 ).object;
[ 6, 1 ]
gap> EvaluateBySCSCP( "GroupIdentificationService", [ [ (1,2,3), (2,3) ] ], server, 26133 ).object;
[ 6, 1 ]
gap> ReadPackage("scscp/example/id512.g");
true
gap> IdGroup512( DihedralGroup( 512 ) );
[ 512, 2042 ]
gap> S1 := StoreAsRemoteObject( SymmetricGroup( 3 ), server, 26133 );;
gap> EvaluateBySCSCP( "WS_IdGroup", [ S1 ], server, 26133 ).object;
[ 6, 1 ]
gap> RetrieveRemoteObject( S1 );
Group([ (1,2,3), (1,2) ])
gap> UnbindRemoteObject( S1 );
true
gap> STOP_TEST( "scscp.tst", 10000000 );