Describe dummy test model. Work on OpenFlow intro.
[openvswitch] / tests / atlocal.in
index 53602258cd9d3e33af9f52582aa4e4d763059c47..c736df40d1c8c1f3b1b9df4de46df57ecf9e8f77 100644 (file)
@@ -32,3 +32,23 @@ if test $HAVE_PYTHON = yes; then
         export PYTHONPATH
     fi
 fi
+
+# 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