all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
blob 85b4b666215ab1b372115f46bc5352e5a579de7e 852 bytes (raw)
name: gnu/packages/patches/gmp-4.3-fix-t-scan-test.patch 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
 
Testcase fix obtained from upstream at:

https://gmplib.org/repo/gmp/raw-rev/966737bd91ed

# HG changeset patch
# User Torbjorn Granlund <tege@gmplib.org>
# Date 1318259187 -7200
# Node ID 966737bd91ed4cd158ca9730167f70db47442fc1
# Parent  27913f466a23776215bd9341866e10a50cf61c01
(check_ref): Fix loop end bound.

diff -r 27913f466a23 -r 966737bd91ed tests/mpz/t-scan.c
--- a/tests/mpz/t-scan.c	Mon Oct 10 12:06:39 2011 +0200
+++ b/tests/mpz/t-scan.c	Mon Oct 10 17:06:27 2011 +0200
@@ -79,7 +79,7 @@
 
               for (isize = 0; isize <= size; isize++)
                 {
-                  for (oindex = 0; oindex <= numberof (offset); oindex++)
+                  for (oindex = 0; oindex < numberof (offset); oindex++)
                     {
                       o = offset[oindex];
                       if ((int) isize*GMP_NUMB_BITS < -o)


debug log:

solving 85b4b666215a ...
found 85b4b666215a in https://yhetil.org/guix/20210804184128.153984-1-bauermann@kolabnow.com/

applying [1/1] https://yhetil.org/guix/20210804184128.153984-1-bauermann@kolabnow.com/
diff --git a/gnu/packages/patches/gmp-4.3-fix-t-scan-test.patch b/gnu/packages/patches/gmp-4.3-fix-t-scan-test.patch
new file mode 100644
index 000000000000..85b4b666215a

1:22: trailing whitespace.
 
Checking patch gnu/packages/patches/gmp-4.3-fix-t-scan-test.patch...
1:30: new blank line at EOF.
+
Applied patch gnu/packages/patches/gmp-4.3-fix-t-scan-test.patch cleanly.
warning: 2 lines add whitespace errors.

index at:
100644 85b4b666215ab1b372115f46bc5352e5a579de7e	gnu/packages/patches/gmp-4.3-fix-t-scan-test.patch

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.