summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/ltp/ltp/0001-open_posix_testsuite-mmap24-2-Relax-condition-a-bit.patch
diff options
context:
space:
mode:
authorDaniel Díaz <daniel.diaz@linaro.org>2019-02-21 12:21:03 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-02-25 10:56:17 +0000
commit471168b615112e8dee61a9d4722ed032873fcf78 (patch)
tree1de33dd2613e49379fd089d8bd81131aae78b4cf /meta/recipes-extended/ltp/ltp/0001-open_posix_testsuite-mmap24-2-Relax-condition-a-bit.patch
parentdb3b872493e9d34dd71c552ddcdf678f01a00d95 (diff)
downloadpoky-471168b615112e8dee61a9d4722ed032873fcf78.tar.gz
ltp: Bump to 20190115
This patch has been refreshed: * 0008-Check-if-__GLIBC_PREREQ-is-defined-before-using-it.patch These patches have been dropped as they have been merged: * 0001-netns_helper.sh-use-ping-6-when-ping6-is-not-avaliab.patch * 0001-setrlimit05-Use-another-method-to-get-bad-address.patch * 0001-sigwaitinfo01-recent-glibc-calls-syscall-directly.patch * 0001-statx-fix-compile-errors.patch * 0001-syscalls-fcntl-make-OFD-command-use-fcntl64-syscall-.patch * 0001-getcpu01-Rename-getcpu-to-avoid-conflict-with-glibc-.patch This patch has been added: * define-sigrtmin-and-sigrtmax-for-musl.patch Added these rdependencies: * file: for ld01, file01 and logrotate * quota: for quota_remount_test01 (From OE-Core rev: d198364c1007aab6523787f9e1bb6bb274cc89ad) Signed-off-by: Daniel Díaz <daniel.diaz@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/ltp/ltp/0001-open_posix_testsuite-mmap24-2-Relax-condition-a-bit.patch')
-rw-r--r--meta/recipes-extended/ltp/ltp/0001-open_posix_testsuite-mmap24-2-Relax-condition-a-bit.patch6
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/recipes-extended/ltp/ltp/0001-open_posix_testsuite-mmap24-2-Relax-condition-a-bit.patch b/meta/recipes-extended/ltp/ltp/0001-open_posix_testsuite-mmap24-2-Relax-condition-a-bit.patch
index 4d771c0b9c..84736053bf 100644
--- a/meta/recipes-extended/ltp/ltp/0001-open_posix_testsuite-mmap24-2-Relax-condition-a-bit.patch
+++ b/meta/recipes-extended/ltp/ltp/0001-open_posix_testsuite-mmap24-2-Relax-condition-a-bit.patch
@@ -43,8 +43,8 @@ index de51d43..810e5c8 100644
43+ * 3. Should get ENOMEM or EINVAL. 43+ * 3. Should get ENOMEM or EINVAL.
44 */ 44 */
45 45
46 #define _XOPEN_SOURCE 600 46 #include <stdio.h>
47@@ -93,8 +93,8 @@ int main(void) 47@@ -92,8 +92,8 @@ int main(void)
48 (unsigned long)len); 48 (unsigned long)len);
49 pa = mmap(addr, len, PROT_READ | PROT_WRITE, MAP_FIXED | MAP_SHARED, fd, 49 pa = mmap(addr, len, PROT_READ | PROT_WRITE, MAP_FIXED | MAP_SHARED, fd,
50 0); 50 0);
@@ -55,7 +55,7 @@ index de51d43..810e5c8 100644
55 exit(PTS_PASS); 55 exit(PTS_PASS);
56 } 56 }
57 57
58@@ -103,6 +103,6 @@ int main(void) 58@@ -102,6 +102,6 @@ int main(void)
59 else 59 else
60 munmap(pa, len); 60 munmap(pa, len);
61 close(fd); 61 close(fd);