Commit 498aa508 authored by Yoni Fogel's avatar Yoni Fogel

Addresses #1442

Updated svn ignore
Src tests (in windows) now link statically, so they must call ydb_init/destroy

git-svn-id: file:///svn/toku/tokudb@9236 c7de825b-a66e-492c-adef-691d508d4ae1
parent b583384d
...@@ -111,11 +111,11 @@ int test_main (int argc, const char *argv[]); ...@@ -111,11 +111,11 @@ int test_main (int argc, const char *argv[]);
int int
main(int argc, const char *argv[]) { main(int argc, const char *argv[]) {
#if defined(_WIN32) || defined(_WIN64) #if defined(_WIN32) || defined(_WIN64)
//toku_ydb_init(); //Windows also uses dll (FOR TESTS) toku_ydb_init();
#endif #endif
int r = test_main(argc, argv); int r = test_main(argc, argv);
#if defined(_WIN32) || defined(_WIN64) #if defined(_WIN32) || defined(_WIN64)
//toku_ydb_destroy(); //Windows also uses dll (FOR TESTS) toku_ydb_destroy();
#endif #endif
return r; return r;
} }
......
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