Add Openflow 1.2 role request/reply processing, update OF 1.2 tests. Add struct ofput...
[sliver-openvswitch.git] / tests / atlocal.in
index 8d0f59d..c736df4 100644 (file)
@@ -33,8 +33,22 @@ if test $HAVE_PYTHON = yes; then
     fi
 fi
 
-# Enable glibc malloc debugging features.
-MALLOC_CHECK_=2
-MALLOC_PERTURB_=165
-export MALLOC_CHECK_
-export MALLOC_PERTURB_
+# Enable malloc debugging features.
+case `uname` in
+Linux)
+    MALLOC_CHECK_=2
+    MALLOC_PERTURB_=165
+    export MALLOC_CHECK_
+    export MALLOC_PERTURB_
+    ;;
+FreeBSD)
+    case `uname -r` in
+    [789].*)
+        MALLOC_CONF=AJ
+        ;;
+    *)
+        MALLOC_CONF=abort:true,junk:true,redzone:true
+        ;;
+    esac
+    export MALLOC_CONF
+esac