added my Recipes
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
From 3fe67deb9fcf0ae3c2ff31a9eccb6a0a9af33b9c Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Fri, 14 Jan 2022 09:47:03 -0800
|
||||
Subject: [PATCH] test: Disable optimization with clang for aligned_alloc.c
|
||||
|
||||
Clang crashes when using glibc 2.35, it works ok with older glibc or
|
||||
musl, so its very specific problem. Its reported here
|
||||
|
||||
https://github.com/llvm/llvm-project/issues/52765
|
||||
|
||||
Until it is fixed, workaround the build failure
|
||||
|
||||
Upstream-Status: Inappropriate [Workaround]
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
---
|
||||
test/integration/aligned_alloc.c | 2 ++
|
||||
1 file changed, 2 insertions(+)
|
||||
|
||||
diff --git a/test/integration/aligned_alloc.c b/test/integration/aligned_alloc.c
|
||||
index 4375b172..6513bdd9 100644
|
||||
--- a/test/integration/aligned_alloc.c
|
||||
+++ b/test/integration/aligned_alloc.c
|
||||
@@ -1,5 +1,7 @@
|
||||
#include "test/jemalloc_test.h"
|
||||
|
||||
+#pragma clang optimize off
|
||||
+
|
||||
#define MAXALIGN (((size_t)1) << 23)
|
||||
|
||||
/*
|
||||
--
|
||||
2.34.1
|
||||
|
||||
@@ -0,0 +1,48 @@
|
||||
#!/bin/sh
|
||||
|
||||
export MALLOC_CONF_ALL=${MALLOC_CONF}
|
||||
# Concatenate the individual test's MALLOC_CONF and MALLOC_CONF_ALL.
|
||||
export_malloc_conf() {
|
||||
if [ "x${MALLOC_CONF}" != "x" -a "x${MALLOC_CONF_ALL}" != "x" ] ; then
|
||||
export MALLOC_CONF="${MALLOC_CONF},${MALLOC_CONF_ALL}"
|
||||
else
|
||||
export MALLOC_CONF="${MALLOC_CONF}${MALLOC_CONF_ALL}"
|
||||
fi
|
||||
}
|
||||
|
||||
|
||||
|
||||
saved_dir=$PWD
|
||||
for dir in tests/* ; do
|
||||
cd $dir
|
||||
for atest in * ; do
|
||||
if [[ "${atest##*.}" == "sh" ]]; then
|
||||
continue
|
||||
fi
|
||||
if [ -e "${atest}.sh" ] ; then
|
||||
# Source the shell script corresponding to the test in a subshell and
|
||||
# execute the test. This allows the shell script to set MALLOC_CONF, which
|
||||
# is then used to set MALLOC_CONF (thus allowing the
|
||||
# per test shell script to ignore the detail).
|
||||
enable_fill=1 \
|
||||
enable_prof=1 \
|
||||
. $(pwd)/${atest}.sh && \
|
||||
export_malloc_conf
|
||||
else
|
||||
export MALLOC_CONF= && \
|
||||
export_malloc_conf
|
||||
fi
|
||||
if [ \( -x $atest \) -a \( -f $atest \) ] ; then
|
||||
rm -rf tests.log
|
||||
./$atest > tests.log 2>&1
|
||||
sed -e '/: pass/ s/^/PASS: /g' \
|
||||
-e '/: skip/ s/^/SKIP: /g' \
|
||||
-e '/: fail/ s/^/FAIL: /g' \
|
||||
-e 's/: pass//g' \
|
||||
-e 's/: skip//g' \
|
||||
-e 's/: fail//g' \
|
||||
-e '/^--- pass:/d' tests.log
|
||||
fi
|
||||
done
|
||||
cd $saved_dir
|
||||
done
|
||||
Reference in New Issue
Block a user