Commit d1a6ea85 authored by Yoni Fogel's avatar Yoni Fogel

addresses #479

port remaining range_tree tests (45,47) to NOOVERLAPS

git-svn-id: file:///svn/tokudb@2724 c7de825b-a66e-492c-adef-691d508d4ae1
parent 925b37c6
...@@ -159,7 +159,9 @@ int main(int argc, const char *argv[]) { ...@@ -159,7 +159,9 @@ int main(int argc, const char *argv[]) {
buflen = 2; buflen = 2;
buf = (toku_range*)toku_malloc(2 * sizeof(toku_range)); buf = (toku_range*)toku_malloc(2 * sizeof(toku_range));
tests(FALSE); tests(FALSE);
#ifndef TOKU_RT_NOOVERLAPS
tests(TRUE); tests(TRUE);
#endif
tree = NULL; tree = NULL;
toku_free(buf); toku_free(buf);
......
...@@ -109,7 +109,9 @@ int main(int argc, const char *argv[]) { ...@@ -109,7 +109,9 @@ int main(int argc, const char *argv[]) {
buflen = 2; buflen = 2;
buf = (toku_range*)toku_malloc(2 * sizeof(toku_range)); buf = (toku_range*)toku_malloc(2 * sizeof(toku_range));
tests(FALSE); tests(FALSE);
#ifndef TOKU_RT_NOOVERLAPS
tests(TRUE); tests(TRUE);
#endif
tree = NULL; tree = NULL;
toku_free(buf); toku_free(buf);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment