diff options
| author | Michał Górny <mgorny@gentoo.org> | 2020-11-10 19:15:01 +0100 |
|---|---|---|
| committer | Michał Górny <mgorny@gentoo.org> | 2020-11-10 20:20:07 +0100 |
| commit | 98da5a43c657ad65526b9f58ca990809cb9c49b8 (patch) | |
| tree | bc9ebcbdcbd5f0f3dc5e00ba012ac9a4ac0ff8b5 /net-libs/http-parser/files | |
| parent | 1f897254f02adb9165eebdb2b6f67517e55e1ae1 (diff) | |
| download | gentoo-98da5a43c657ad65526b9f58ca990809cb9c49b8.tar.gz gentoo-98da5a43c657ad65526b9f58ca990809cb9c49b8.tar.bz2 gentoo-98da5a43c657ad65526b9f58ca990809cb9c49b8.zip | |
net-libs/http-parser: Backport non-x86 test fix
Closes: https://bugs.gentoo.org/753887
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'net-libs/http-parser/files')
| -rw-r--r-- | net-libs/http-parser/files/http-parser-2.9.4-non-x86-test.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/net-libs/http-parser/files/http-parser-2.9.4-non-x86-test.patch b/net-libs/http-parser/files/http-parser-2.9.4-non-x86-test.patch new file mode 100644 index 000000000000..8bcbbf3589a4 --- /dev/null +++ b/net-libs/http-parser/files/http-parser-2.9.4-non-x86-test.patch @@ -0,0 +1,20 @@ +diff --git a/test.c b/test.c +index 53a3163..49c4b7a 100644 +--- a/test.c ++++ b/test.c +@@ -4343,7 +4343,13 @@ main (void) + printf("http_parser v%u.%u.%u (0x%06lx)\n", major, minor, patch, version); + + printf("sizeof(http_parser) = %u\n", (unsigned int)sizeof(http_parser)); +- assert(sizeof(http_parser) == 4 + 4 + 8 + 2 + 2 + 4 + sizeof(void *)); ++ ++#if defined(__i386__) || defined(__x86_64__) ++ /* Should be 32 on both 32 bits and 64 bits x86 because of struct padding, ++ * see https://github.com/nodejs/http-parser/issues/507. ++ */ ++ assert(sizeof(http_parser) == 24 + sizeof(void*)); ++#endif + + //// API + test_preserve_data(); + |
