aboutsummaryrefslogtreecommitdiff
path: root/HACKING
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2022-01-23 10:56:23 +0100
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2022-01-23 17:19:07 +0100
commitb028e17ebd090ed60e1e45cfdf14089c5bf21840 (patch)
tree407b3b478f67f94f8ced36618601d0d86fb0117e /HACKING
parentc69c284b92fd950002833563bc3e064b07e59938 (diff)
downloadguix-b028e17ebd090ed60e1e45cfdf14089c5bf21840.tar.gz
guix-b028e17ebd090ed60e1e45cfdf14089c5bf21840.zip
gnu: Add rust-sysinfo-0.23.
* gnu/packages/crates-io.scm (rust-sysinfo-0.23): New variable. (rust-sysinfo-0.21): Inherit from above.
Diffstat (limited to 'HACKING')
0 files changed, 0 insertions, 0 deletions
Update doc. (test-match-name*, test-match-name*/negated, %test-match-all): New variables. (main): Compute the test specifier 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