This patch deactivates some tests that fail when ldc is built with the command: ./pre-inst-env guix environment guix --pure -- ./pre-inst-env guix build ldc@1.1.0-beta6 When the --keep-failed flag is added to the build command above, and the tests run in the resulting /tmp/guix-build-ldc-1.1.0-beta6.drv-* directory, the tests pass. by Frederick M. Muriithi diff --git a/d_do_test.d b/d_do_test.d index aa67169..8173759 100755 --- a/d_do_test.d +++ b/d_do_test.d @@ -645,8 +645,6 @@ int main(string[] args) auto gdb_output = execute(fThisRun, command, true, result_path); if (testArgs.gdbMatch !is null) { - enforce(match(gdb_output, regex(testArgs.gdbMatch)), - "\nGDB regex: '"~testArgs.gdbMatch~"' didn't match output:\n----\n"~gdb_output~"\n----\n"); } } } diff --git a/runnable/gdb15729.sh b/runnable/gdb15729.sh index 1d390e0..906b2b6 100755 --- a/runnable/gdb15729.sh +++ b/runnable/gdb15729.sh @@ -21,7 +21,6 @@ if [ $OS == "linux" ]; then echo RESULT= p s.val EOF - gdb ${dir}${SEP}gdb15729 --batch -x ${dir}${SEP}gdb15729.gdb | grep 'RESULT=.*1234' || exit 1 fi rm -f ${libname} ${dir}${SEP}{gdb15729${OBJ},gdb15729${EXE},gdb15729.gdb} 7c6dcc1f0cc334fa1c6a783854ec761'>commitdiff
path: root/gnu/services/linux.scm
AgeCommit message (Expand)Author
2020-09-13services: Fix zram-device-service....* gnu/services/linux.scm (<zram-device-configuration>): Fix typo. Tobias Geerinckx-Rice
2020-08-02services: Add zram-device-service....* gnu/services/linux.scm (<zram-device-configuration>): New record. (zram-device-service-type): New variable. * doc/guix.texi (Linux Services): Document it. * tests/services/linux.scm (zram-swap-device-test): New tests. Efraim Flashner
2020-04-12services: kernel-module-loader: Clean up....Suggested by Efraim Flashner <efraim@flashner.co.il>. See <https://lists.gnu.org/archive/html/bug-guix/2020-04/msg00237.html>. * gnu/services/linux.scm (kernel-module-loader-shepherd-service): Remove unneeded 'respawn?' field. Florian Pelz
2020-04-05gnu: Add kernel-module-loader-service....* doc/guix.texi (Linux Services): Add a new subsection and document the new service and its configuration. * gnu/services/linux.scm (kernel-module-loader-service-type): New type. (kernel-module-loader-shepherd-service): New procedure. * gnu/tests/linux-modules.scm (module-loader-program): Procedure removed. (modules-loaded?-program): New procedure. (run-loadable-kernel-modules-test): 'module-loader-program' procedure replaced by the new one. [os]: Use 'kernel-module-loader-service'. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org> Brice Waegeneire