aboutsummaryrefslogtreecommitdiff
path: root/gnu/tests.scm
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2017-07-09 22:06:57 +0200
committerRicardo Wurmus <rekado@elephly.net>2017-07-17 14:00:12 +0200
commit5f691e2e8f763540a9fcfa1b7a2ee7db0abaa55f (patch)
treeecaf719bebc97595ffe9a47ea9150f8febe73442 /gnu/tests.scm
parent9b4d5c09ab42a75416e81d6ef34eafbdd6180ed7 (diff)
downloadguix-5f691e2e8f763540a9fcfa1b7a2ee7db0abaa55f.tar.gz
guix-5f691e2e8f763540a9fcfa1b7a2ee7db0abaa55f.zip
gnu: Add texlive-latex-gcite.
* gnu/packages/tex.scm (texlive-latex-gcite): New variable.
Diffstat (limited to 'gnu/tests.scm')
0 files changed, 0 insertions, 0 deletions
ifier based on the values of the new options and apply it to the current test runner when running the test file. * doc/guix.texi (Running the Test Suite): Document the new options. Maxim Cournoyer 2021-01-31build: test-driver.scm: Enable colored test results by default....The Automake parallel test harness does its own smart detection of the terminal color capability and always provides the --color-tests argument to the driver. This change defaults the --color-tests argument to true when the test driver is run on its own (not via Automake). * build-aux/test-driver.scm (main): Set the default value of the --color-tests argument to true when it's not explicitly provided. Maxim Cournoyer 2021-01-31build: test-driver.scm: Make output redirection optional....This makes it easier (and less surprising) for users to experiment with the custom Scheme test driver directly. The behavior is unchanged from Automake's point of view. * build-aux/test-driver.scm (main): Make the --log-file and --trs-file arguments optional and update doc. Only open, redirect and close a port to a log file when the --log-file option is provided. Only open and close a port to a trs file when the --trs-file option is provided. (test-runner-gnu): Set OUT-PORT parameter default value to the current output port. Set the TRS-PORT parameter default value to a void port. Update doc. Maxim Cournoyer