From 5b76dd15942e2ebd90751d96fc026c1fb962d8a6 Mon Sep 17 00:00:00 2001 From: Chmouel Boudjnah Date: Mon, 5 Aug 2013 14:20:22 +0200 Subject: [PATCH] Fix generating coverage on MacOSX - Closes-Bug: 1208448 Change-Id: I494938c712dcf78362c01e11839021dd16a64751 --- run-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run-tests.sh b/run-tests.sh index 69dd753a84..87fa720185 100755 --- a/run-tests.sh +++ b/run-tests.sh @@ -22,7 +22,7 @@ if [ ! "$COVERAGE_ARGS" ]; then fi # Main unit tests -MONGO_DATA=`mktemp -d` +MONGO_DATA=`mktemp -d /tmp/CEILO-MONGODB-XXXXX` trap "clean_exit" EXIT mkfifo ${MONGO_DATA}/out mongod --maxConns 32 --nojournal --noprealloc --smallfiles --quiet --noauth --port 29000 --dbpath "${MONGO_DATA}" --bind_ip localhost &>${MONGO_DATA}/out &