1
0
Fork 0
mirror of https://github.com/ganelson/inform.git synced 2024-07-02 23:14:57 +03:00
inform7/inbuild/syntax-test/Chapter 1/Program Control.w
2020-03-28 19:42:53 +00:00

48 lines
1.1 KiB
OpenEdge ABL

[Main::] Program Control.
What shall we test?
@h Main routine.
@d INTOOL_NAME "syntax-test"
@e TEST_TREE_CLSW
=
int main(int argc, char **argv) {
Foundation::start();
WordsModule::start();
SyntaxModule::start();
CommandLine::declare_heading(L"syntax-test: a tool for testing the syntax module\n");
CommandLine::declare_switch(TEST_TREE_CLSW, L"test-tree", 2,
L"test the syntax tree (from text in X)");
CommandLine::read(argc, argv, NULL, &Main::respond, &Main::ignore);
WordsModule::end();
SyntaxModule::end();
Foundation::end();
return 0;
}
void Main::respond(int id, int val, text_stream *arg, void *state) {
switch (id) {
case TEST_TREE_CLSW: Main::load(I"Syntax.preform"); Unit::test_tree(arg); break;
}
}
void Main::load(text_stream *leaf) {
pathname *P = Pathnames::from_text(I"inbuild");
P = Pathnames::subfolder(P, I"syntax-test");
P = Pathnames::subfolder(P, I"Tangled");
filename *S = Filenames::in_folder(P, leaf);
wording W = Preform::load_from_file(S);
Preform::parse_preform(W, FALSE);
}
void Main::ignore(int id, text_stream *arg, void *state) {
Errors::fatal("only switches may be used at the command line");
}