Quelle generate_tst_files.g
Sprache: unbekannt
|
|
#create output and tst files from .g files in the tst/gap directory.
#Executing this file is NOT necessary for the installation of the package "forms" (including the documentation)
#Performing these steps, files will be written in the tst directory of the
#forms package tree. Under UNIX-like operating systems, you need sufficient
#permissions to do. Executing this is NOT necessary for the installation of the
#package "forms". This file is based on the generate_examples_files.g in the /forms/examples directory.
#to make sure tjere is no confusing with linebreaks, it seems better to have all input (in the .g files)
#in one (long) line.
#Messy things happen when you do it, so don't try this at home kids!
#create workspace with packages
LoadPackage("forms");
SaveWorkspace("forms.ws");
quit;
#restart gap now.
#initialize filenames
#initialisations to create .tst files from .g files in tst directory. Output will be in outputdir.
files := ["test_forms1", "test_forms2", "test_forms3", "test_forms4", "test_forms5",
"test_forms6","test_forms7", "test_forms8", "test_forms9", "test_forms10",
"test_forms11", "test_recog", "test_forms12", "test_forms13", "test_forms14",
"test_forms15", "test_forms16" ];
#initialize directorynames
#sourcedir = dir where .g files are located : ".../pkg/forms/tst/gap"
#preambledir = directory where 'preamble_sws.g is found' : ".../pkg/forms/examples"
#outputdir = directory to write '.out' files: ".../pkg/forms/examples/output"
homedir := DirectoryCurrent();
sourcedir := DirectoriesPackageLibrary("forms","tst/gap")[1];
preambledir := DirectoriesPackageLibrary("forms","examples/")[1];
outputdir := DirectoriesPackageLibrary("forms","tst/output")[1];
paths := JoinStringsWithSeparator(GAPInfo.RootPaths{[2,3]},";");
args := JoinStringsWithSeparator(["-l",paths," -L forms.ws"," -o 4G"]," ");
args := ["-l",paths,"-L","forms.ws","-o","4G"];
extension := ".out\";";
cmddir := "dir \:\= DirectoriesPackageLibrary\(\"forms\"\,\"tst\/output\"\)\[1\]\;";
#name of script to start gap version, might be different on your computer
gapstart := "gap4r8";
gap := Filename(Directory("/usr/bin/"),gapstart);
#create .out files using the saved workspace
#IMPORTANT: here we suppose that the script to start up our favorite version of
#GAP is called 'gap4r4', and is located in '/usr/bin'. Change the code if this is not true!
#you certainly now the name of the script, since you started gap. To find the
#dir, just issue in the gap session that is running:
#Exec("which gap4r4"); #for UNIX
for filename in files do
Print("Now converting file: ", filename, "\n");
stream := InputOutputLocalProcess( homedir, gap, args);
#cmd := Concatenation("file := \"",filename,".out\";");
cmd := Concatenation("file := \"",filename,extension);
WriteLine(stream,cmd);
#cmd := "dir \:\= DirectoriesPackageLibrary\(\"forms\"\,\"examples\/output\"\)\[1\]\;";
WriteLine(stream,cmddir);
preamble := Filename(preambledir,"preamble_sws.g");
preamble_stream := InputTextFile(preamble);
cmds := ReadAll(preamble_stream);
WriteLine(stream,cmds);
repeat
str := ReadLine(stream);
until str = "true\n";
inputfile := Filename(sourcedir,Concatenation(filename,".g"));
input_stream := InputTextFile(inputfile);
cmd := ReadLine(input_stream);
while cmd <> fail do
WriteAll(stream,cmd);
cmd := ReadLine(input_stream);
ReadAll(stream);
od;
repeat until ReadAll(stream)=fail; #new since oct 2015.
od;
#create .tst files
#the nested ifs together with the SizeScreen make sure that input lines (plural),
#are written back in the tst file as one (long) input line.
includedir := DirectoriesPackageLibrary("forms","tst")[1];
for filename in files do
i := Filename(outputdir,Concatenation(filename,".out"));
o := Filename(includedir,Concatenation(filename,".tst"));
PrintTo(o,"");
input_stream := InputTextFile(i);
ReadLine(input_stream); #reads first line which is a line with a #
#ReadLine(input_stream);
AppendTo(o,Concatenation("gap> START_TEST(\"Forms: ",filename,".tst\");\n"));
line := ReadLine(input_stream);
while line <> "gap> quit;\n" do
if Length(line) > 3 then
if line{[1..4]} = "gap>" then
RemoveCharacters(line,"\n");
line := Concatenation(line,"\n");
fi;
fi;
SizeScreen([500,24]);
AppendTo(o,line);
SizeScreen([80,24]);
line := ReadLine(input_stream);
od;
AppendTo(o,Concatenation("gap> STOP_TEST(\"",filename,".tst\", 10000 );\n"));
od;
#now write testall.g file.
o := Filename(includedir,"testall.g");
tstdir := DirectoriesPackageLibrary("forms","tst")[1];
part1 := Filename(tstdir,"template_part1.g");
input_stream := InputTextFile(part1);
PrintTo(o,ReadAll(input_stream));
AppendTo(o,"testfiles := [\n");
for i in [1..Length(files)-1] do
filename := Concatenation(files[i],".tst");
AppendTo(o,Concatenation("\"",filename,"\",\n"));
od;
filename := Concatenation(files[Length(files)],".tst");
AppendTo(o,Concatenation("\"",filename,"\"\n];\n\n"));
part2 := Filename(tstdir,"template_part2.g");
input_stream := InputTextFile(part2);
AppendTo(o,ReadAll(input_stream));
[ Dauer der Verarbeitung: 0.12 Sekunden
(vorverarbeitet)
]
|
2026-04-02
|