File: testall.g

package info (click to toggle)
gap-float 0.7.4%2Bds-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 628 kB
  • ctags: 611
  • sloc: ansic: 2,537; cpp: 2,010; xml: 184; makefile: 103; sh: 1
file content (18 lines) | stat: -rw-r--r-- 801 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
LoadPackage("float");
SetInfoLevel(InfoFloat,1);
dirs := DirectoriesPackageLibrary("float","tst");

SetFloats(IEEE754FLOAT);
Test(Filename(dirs,"arithmetic.tst"),rec(compareFunction:="uptowhitespace"));
SetFloats(MPFR);
Test(Filename(dirs,"arithmetic.tst"),rec(compareFunction:="uptowhitespace"));
SetFloats(MPFI);
Test(Filename(dirs,"arithmetic.tst"),rec(compareFunction:="uptowhitespace"));
SetFloats(MPC);
Test(Filename(dirs,"arithmetic.tst"),rec(compareFunction:="uptowhitespace"));
field := MPC_PSEUDOFIELD;
Test(Filename(dirs,"polynomials.tst"),rec(compareFunction:="uptowhitespace"));
##SetFloats(CXSC);
##Test(Filename(dirs,"arithmetic.tst"),rec(compareFunction:="uptowhitespace"));
##field := CXSC_PSEUDOFIELD;
##Test(Filename(dirs,"polynomials.tst"),rec(compareFunction:="uptowhitespace"));