mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-18 08:51:45 -08:00
20 lines
322 B
Perl
20 lines
322 B
Perl
#!/usr/local/bin/perl -w
|
|
# $HopeName$
|
|
#
|
|
# run a set of tests specified in a test-set file
|
|
#
|
|
|
|
&options(
|
|
"MPS_INCLUDE_DIR",
|
|
"MPS_LINK_OBJ",
|
|
"INTERFACE_VERSION",
|
|
"PLATFORM",
|
|
"LOG_DIR"
|
|
);
|
|
|
|
require "require";
|
|
|
|
$testset = $qa_args[0];
|
|
|
|
&run_testset($testset, "$LOG_DIR/summ.log", "$LOG_DIR/res.log", "$LOG_DIR/full.log");
|
|
|