12345678910111213141516171819202122 |
- %
- % This script is normally run as
- % r38 ../util/testall.red -D@srcdir=DIR -Dwhich_module=XXX
- % where XXX is the name of a module that is to be tested. If XXX is left
- % empty then the script will test all known modules.
- %
- symbolic;
- load!-module 'remake;
- get_configuration_data t;
- if boundp 'which_module and which_module and not (which_module = "") then <<
- mods := compress explodec which_module;
- if member(mods, r38_test_cases) then test_a_package list mods
- else error(0, list("unknown module to test", which_module)) >>
- else test_a_package r38_test_cases;
- end;
|