4452a4812f
This allows a guarantee that operator new never throws. Fix the .gitignore rules to include test/integration/cpp while we're here.
9 lines
171 B
Bash
9 lines
171 B
Bash
#!/bin/sh
|
|
|
|
XMALLOC_STR=""
|
|
if [ "x${enable_xmalloc}" = "x1" ] ; then
|
|
XMALLOC_STR="xmalloc:false,"
|
|
fi
|
|
|
|
export MALLOC_CONF="${XMALLOC_STR}experimental_infallible_new:true"
|