From: fis Date: Sat, 20 Jan 2018 07:42:38 +0800 Subject: [PATCH] rct.cmake: Add missing headers. --- rct.cmake | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/rct.cmake b/rct.cmake index 323e7b9..3e0ac6b 100644 --- a/rct.cmake +++ b/rct.cmake @@ -339,7 +339,27 @@ if (NOT RCT_NO_INSTALL) rct/Timer.h rct/Value.h rct/WriteLocker.h + rct/CpuUsage.h + rct/DataFile.h + rct/Date.h + rct/EmbeddedLinkedList.h + rct/FinishMessage.h + rct/Flags.h + rct/Hash.h + rct/LinkedList.h + rct/Map.h + rct/MemoryMappedFile.h + rct/OnDestruction.h + rct/QuitMessage.h + rct/ResponseMessage.h + rct/ScriptEngine.h + rct/StackBuffer.h + rct/WindowsUnicodeConversion.h DESTINATION include/rct) + install(FILES + json/json.hpp + DESTINATION include/rct/json) + install(EXPORT "rct" DESTINATION lib/cmake) endif () -- 2.13.6 ub'>Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/tests/guix-pack-relocatable.sh
AgeCommit message (Expand)Author
2023-04-21tests: Fix checks for expected failures....Addresses <https://issues.guix.gnu.org/62406>. With 'set -e', a return status inverted with '!' does not cause the shell to exit immediately. Instead use '&& false' to indicate an expected failure. * tests/guix-archive.sh, tests/guix-build-branch.sh, tests/guix-build.sh, tests/guix-daemon.sh, tests/guix-download.sh, tests/guix-environment-container.sh, tests/guix-environment.sh, tests/guix-gc.sh, tests/guix-git-authenticate.sh, tests/guix-graph.sh, tests/guix-hash.sh, tests/guix-home.sh, tests/guix-pack-relocatable.sh, tests/guix-pack.sh, tests/guix-package-aliases.sh, tests/guix-package-net.sh, tests/guix-package.sh, tests/guix-refresh.sh, tests/guix-shell.sh, tests/guix-style.sh, tests/guix-system.sh: Replace uses of '! ...' with '... && false' or `test ! ...` as appropriate. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Eric Bavier
2023-02-27pack: Adjust shell tests to read-only tarball root....Fixes <https://issues.guix.gnu.org/61853>. Fixes a regression introduced in 68380db4c40a2ee1156349a87254fd7b1f1a52d5, whereby the tarball's root entry is now read-only, due to the creation of "profile-directory" in the store. * tests/guix-pack.sh: Remove and recreate $test_directory before transformation option test. * tests/guix-pack-relocatable.sh: Add "chmod +w $test_directory" lines before attempts to write to it. Ludovic Courtès