1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-07 20:30:32 -08:00

Update tool index.

Copied from Perforce
 Change: 184955
 ServerID: perforce.ravenbrook.com
This commit is contained in:
Gareth Rees 2014-03-22 16:17:09 +00:00
parent 2c732bdfba
commit a3b66086ed
2 changed files with 16 additions and 11 deletions

View file

@ -25,20 +25,23 @@ This document is not confidential.
2. Tools
--------
================= =========================================================
`gcovfmt.py`_ Formats the output of the ``gcov`` coverage tool into a
summary table. It runs only on OS X, where it is invoked
from the Xcode project after running the test suite for
the “Debug” configuration.
================= ==========================================================
`branch`_ Make a version or development branch.
`gcovfmt`_ Formats the output of the ``gcov`` coverage tool into a
summary table.
`release`_ Make a product release.
`testcoverage`_ Instrument the test suite for coverage, run it, and output
a coverage report.
`testopendylan`_ Download the latest version of Open Dylan and build it
against the MPS sources.
`testrun.bat`_ Implements the ``testrun`` make target on Windows, where
it is invoked from ``commpost.nmk``.
`testrun.sh`_ Implements the ``testrun`` make target on FreeBSD and
Linux, it is invoked from ``comm.gmk``, and on OS X,
where it is invoked from the Xcode project.
`test-runner.py`_ Builds and runs tests. As of 2013-05-24 it is not used.
================= =========================================================
Linux, it is invoked from ``comm.gmk``, and on OS X, where
it is invoked from the Xcode project.
================= ==========================================================
.. _gcovfmt.py: gcovfmt.py
.. _gcovfmt: gcovfmt
.. _testrun.bat: testrun.bat
.. _testrun.sh: testrun.sh
.. _test-runner.py: test-runner.py

View file

@ -12,16 +12,18 @@
#
# This shell script runs the MPS test suite and prepares a test
# coverage report.
#
# Supported platforms: xc.
ARCH=$(uname -m)
OS=$(uname -s)
PROJECT=mps
CONFIGURATION=Debug
TOOL=$(dirname "$0")
CODE=$TOOL/../code
case "$ARCH-$OS" in
*-Darwin)
CONFIGURATION=Debug
(
cd -- "$CODE"
xcodebuild -config "$CONFIGURATION" clean