1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-13 01:32:21 -07:00

Record test results in a file

Copied from Perforce
 Change: 20277
 ServerID: perforce.ravenbrook.com
This commit is contained in:
Richard Tucker 1998-10-26 15:21:41 +00:00
parent f159a3684b
commit 9ae231bd54

View file

@ -1,19 +1,21 @@
#!/usr/local/bin/perl
# $HopeName$
# $HopeName: MMQA_harness!script:commands:run(trunk.2) $
#
# run tests interactively (allows for user input, immediate results,
# &c, and give results in standard format)
# &c, and give results in standard format, and mailing results)
&options(
"MPS_INCLUDE_DIR",
"MPS_LINK_OBJ",
"INTERFACE_VERSION",
"PLATFORM"
"PLATFORM",
"LOG_DIR"
);
require "require";
foreach $testfile (@qa_args) {
&run_test($testfile, "yes", "results");
&run_test($testfile, "yes", "results", "$LOG_DIR/last.log");
&mailfile("$LOG_DIR/last.log", "MMQA-log: result of test $testfile");
}