aboutsummaryrefslogtreecommitdiff
path: root/ROADMAP
diff options
context:
space:
mode:
authorZheng Junjie <zhengjunjie@iscas.ac.cn>2024-07-06 18:33:41 +0800
committerZheng Junjie <zhengjunjie@iscas.ac.cn>2024-07-18 10:45:15 +0800
commitdcb90d38eca26217b016eb3b926d14b023a6875c (patch)
treef1900e4abdc38ed5be6d139da14b9d8f90077eef /ROADMAP
parentdeed5a1126e7ee72b12fb05645dc71465d606a70 (diff)
downloadguix-dcb90d38eca26217b016eb3b926d14b023a6875c.tar.gz
guix-dcb90d38eca26217b016eb3b926d14b023a6875c.zip
gnu: ktuberling: Update to 24.05.2.
* gnu/packages/kde-games.scm (ktuberling): Update to 24.05.2. [inputs]: Remove python-wrapper, qtbase-5, qtmultimedia-5, qtdeclarative-5, and qtsvg-5; add qtmultimedia, qtdeclarative, and qtsvg. [arguments]: Set #:qtbase to qtbase. Change-Id: If8824a93b46688a1b519b747a0f708fe062f5d69
Diffstat (limited to 'ROADMAP')
0 files changed, 0 insertions, 0 deletions
* build-aux/test-driver.scm (show-help): Add help text for the new --select and --exclude options. (%options): Add the new select and exclude options. (test-runner-gnu): Pass them to the test runner. 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. 2021-01-31build: test-driver.scm: Enable colored test results by default.Maxim Cournoyer 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. 2021-01-31build: test-driver.scm: Make output redirection optional.Maxim Cournoyer 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.