get the lock_tree tests to compile and run on the main trunk. closes #1384

git-svn-id: file:///svn/toku/tokudb@8735 c7de825b-a66e-492c-adef-691d508d4ae1
This commit is contained in:
Rich Prohaska 2013-04-16 23:57:38 -04:00 committed by Yoni Fogel
parent b786780000
commit 9dbc0241d9
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@
.DEFAULT_GOAL= build
TOKUROOT=../../../
INCLUDEDIRS=-I. -I../ -I$(TOKUROOT)newbrt -I$(TOKUROOT)src/range_tree
INCLUDEDIRS=-I. -I../ -I$(TOKUROOT)newbrt -I$(TOKUROOT)src/range_tree -I$(TOKUROOT)include
DEPEND_COMPILE += \
../*.h \
test.h \

View file

@ -118,5 +118,5 @@ static inline void* fail_malloc(size_t size) {
errno = ENOMEM;
return NULL;
}
return malloc(size);
return toku_malloc(size);
}