summaryrefslogtreecommitdiff
path: root/gnu/packages/patches
diff options
context:
space:
mode:
authorJakub Kądziołka <kuba@kadziolka.net>2020-03-29 18:35:06 +0200
committerJakub Kądziołka <kuba@kadziolka.net>2020-03-29 18:35:06 +0200
commit57c3b71cbe1cd9ca6055823a029bd1238e8756bd (patch)
treee64faca0eadbad3dc90d713555aae7cebc072a61 /gnu/packages/patches
parent1a4baf51196d413e583498be7f3780a3e4f98372 (diff)
downloadguix-patches-57c3b71cbe1cd9ca6055823a029bd1238e8756bd.tar
guix-patches-57c3b71cbe1cd9ca6055823a029bd1238e8756bd.tar.gz
gnu: Update hash-extender.
* gnu/packages/crypto.scm (hash-extender): Update to newer commit. * gnu/packages/patches/hash-extender-test-suite.patch: The patch was merged upstream, no need to apply it anymore. * gnu/local.mk (dist_patch_DATA): Unregister the patch file.
Diffstat (limited to 'gnu/packages/patches')
-rw-r--r--gnu/packages/patches/hash-extender-test-suite.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/gnu/packages/patches/hash-extender-test-suite.patch b/gnu/packages/patches/hash-extender-test-suite.patch
deleted file mode 100644
index 59de52dad4..0000000000
--- a/gnu/packages/patches/hash-extender-test-suite.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-Make the test suite exit with a non-zero exit code if some tests failed.
-Pull request pending upstream: https://github.com/iagox86/hash_extender/pull/13
---- a/test.c
-+++ b/test.c
-@@ -79,5 +79,9 @@ void test_report(void)
- printf("TESTS PASSED: %d / %d [%2.4f%%]\n", tests_passed, tests_run, 100 * (float)tests_passed / tests_run);
- printf("--------------------------------------------------------------------------------\n");
- }
-+
-+ if (tests_passed != tests_run) {
-+ exit(1);
-+ }
- }