File: makecheck.tst

package info (click to toggle)
gap-guava 3.20%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,804 kB
  • sloc: ansic: 20,501; xml: 10,382; makefile: 254; sh: 55
file content (39 lines) | stat: -rw-r--r-- 1,320 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
## debian/tests/makecheck.tst -- GAP Test script
## script format: GAP Reference Manual subsection 7.9.2 Test (GAP 4r8)
##
## inspired by `AvailabilityTest' in `PackageInfo.g'
gap> AdHocAvailabilityTest :=
> function()
>   local path, answer;
>   answer := true;
>   path := DirectoriesPackagePrograms( "guava" );
>   if ForAny( ["desauto", "leonconv", "wtdist"],
>       f -> Filename( path, f ) = fail
>       ) then
>     Print( "#I  Cannot find at least one of the C code programs.\n" );
>     answer := false;
>   fi;
>   return answer;
> end;;
gap> TestPackageAvailability( "guava" , "=3.20" , true );
"/usr/share/gap/pkg/guava/"
gap> AdHocAvailabilityTest();
true
gap> TestPackage( "guava" );;
Syntax warning: Unbound global variable in /usr/share/gap/pkg/guava/lib/codege\
n.gi:2431
    f := FpfAutomorphismGroupsCyclic( P, m );
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^
Syntax warning: Unbound global variable in /usr/share/gap/pkg/guava/lib/codege\
n.gi:2434
    D := DesignFromFerreroPair( K, H, "*" );
         ^^^^^^^^^^^^^^^^^^^^^
Syntax warning: Unbound global variable in /usr/share/gap/pkg/guava/lib/codege\
n.gi:2435
    M := IncidenceMat( D );
         ^^^^^^^^^^^^
#I  No errors detected while testing package guava version 3.20
#I  using the test file `/usr/share/gap/pkg/guava/tst/guava.tst'

##
## eos