diff mbox series

[ovs-dev,2/4] tests: Remove redzone flag for FreeBSD 12+.

Message ID 20181210170523.2279-3-i.maximets@samsung.com
State Accepted
Headers show
Series Various build/test fixes. | expand

Commit Message

Ilya Maximets Dec. 10, 2018, 5:05 p.m. UTC
'redzone' not supported in new versions of jemalloc
(since jemalloc 5.0.0).

Signed-off-by: Ilya Maximets <i.maximets@samsung.com>
---
 tests/atlocal.in | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

Comments

Ben Pfaff Dec. 10, 2018, 5:51 p.m. UTC | #1
On Mon, Dec 10, 2018 at 08:05:21PM +0300, Ilya Maximets wrote:
> 'redzone' not supported in new versions of jemalloc
> (since jemalloc 5.0.0).
> 
> Signed-off-by: Ilya Maximets <i.maximets@samsung.com>

Applied to master, thanks!
diff mbox series

Patch

diff --git a/tests/atlocal.in b/tests/atlocal.in
index e186fc555..388f79ed8 100644
--- a/tests/atlocal.in
+++ b/tests/atlocal.in
@@ -78,9 +78,12 @@  FreeBSD)
     [789].*)
         MALLOC_CONF=AJ
         ;;
-    *)
+    1[01].*)
         MALLOC_CONF=abort:true,junk:true,redzone:true
         ;;
+    *)
+        MALLOC_CONF=abort:true,junk:true
+        ;;
     esac
     export MALLOC_CONF
 esac