What shall we test?
define PROGRAM_NAME "building-test"
typedef void kind; kind *K_value = NULL;
enum TEST_CLSW
int main(int argc, char **argv) { Foundation::start(argc, argv); WordsModule::start(); BuildingModule::start(); BytecodeModule::start(); CommandLine::declare_heading(U"building-test: a tool for testing the building module\n"); CommandLine::declare_switch(TEST_CLSW, U"test", 2, U"perform unit tests from file X"); CommandLine::read(argc, argv, NULL, &Main::respond, &Main::ignore); WordsModule::end(); BuildingModule::end(); BytecodeModule::end(); Foundation::end(); return 0; } void Main::respond(int id, int val, text_stream *arg, void *state) { switch (id) { case TEST_CLSW: Unit::run(Filenames::from_text(arg)); break; } } void Main::ignore(int id, text_stream *arg, void *state) { Errors::fatal("only switches may be used at the command line"); }