You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by vo...@apache.org on 2015/09/08 10:20:31 UTC

ignite git commit: CPP: Decreased Java heap usage in tests to let 32-but suite run.

Repository: ignite
Updated Branches:
  refs/heads/master cec918d9a -> f03a5307c


CPP: Decreased Java heap usage in tests to let 32-but suite run.


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/f03a5307
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/f03a5307
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/f03a5307

Branch: refs/heads/master
Commit: f03a5307cd9b0f28060b7053c8a89e7e595ce309
Parents: cec918d
Author: vozerov-gridgain <vo...@gridgain.com>
Authored: Tue Sep 8 11:21:11 2015 +0300
Committer: vozerov-gridgain <vo...@gridgain.com>
Committed: Tue Sep 8 11:21:11 2015 +0300

----------------------------------------------------------------------
 modules/platform/src/main/cpp/core-test/src/cache_query_test.cpp | 4 ++--
 modules/platform/src/main/cpp/core-test/src/cache_test.cpp       | 4 ++--
 modules/platform/src/main/cpp/core-test/src/ignition_test.cpp    | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/f03a5307/modules/platform/src/main/cpp/core-test/src/cache_query_test.cpp
----------------------------------------------------------------------
diff --git a/modules/platform/src/main/cpp/core-test/src/cache_query_test.cpp b/modules/platform/src/main/cpp/core-test/src/cache_query_test.cpp
index 6ccfd51..99ef727 100644
--- a/modules/platform/src/main/cpp/core-test/src/cache_query_test.cpp
+++ b/modules/platform/src/main/cpp/core-test/src/cache_query_test.cpp
@@ -199,8 +199,8 @@ struct CacheQueryTestSuiteFixture {
         cfg.jvmOptsLen = 5;
         cfg.jvmOpts = opts;
 
-        cfg.jvmInitMem = 1024;
-        cfg.jvmMaxMem = 4096;
+        cfg.jvmInitMem = 256;
+        cfg.jvmMaxMem = 768;
 
         char* cfgPath = getenv("IGNITE_NATIVE_TEST_CPP_CONFIG_PATH");
 

http://git-wip-us.apache.org/repos/asf/ignite/blob/f03a5307/modules/platform/src/main/cpp/core-test/src/cache_test.cpp
----------------------------------------------------------------------
diff --git a/modules/platform/src/main/cpp/core-test/src/cache_test.cpp b/modules/platform/src/main/cpp/core-test/src/cache_test.cpp
index b69caab..4c1069c 100644
--- a/modules/platform/src/main/cpp/core-test/src/cache_test.cpp
+++ b/modules/platform/src/main/cpp/core-test/src/cache_test.cpp
@@ -106,8 +106,8 @@ struct CacheTestSuiteFixture {
         cfg.jvmOptsLen = 5;
         cfg.jvmOpts = opts;
 
-        cfg.jvmInitMem = 1024;
-        cfg.jvmMaxMem = 4096;
+        cfg.jvmInitMem = 256;
+        cfg.jvmMaxMem = 768;
 
         char* cfgPath = getenv("IGNITE_NATIVE_TEST_CPP_CONFIG_PATH");
 

http://git-wip-us.apache.org/repos/asf/ignite/blob/f03a5307/modules/platform/src/main/cpp/core-test/src/ignition_test.cpp
----------------------------------------------------------------------
diff --git a/modules/platform/src/main/cpp/core-test/src/ignition_test.cpp b/modules/platform/src/main/cpp/core-test/src/ignition_test.cpp
index f55977a..3f5edca 100644
--- a/modules/platform/src/main/cpp/core-test/src/ignition_test.cpp
+++ b/modules/platform/src/main/cpp/core-test/src/ignition_test.cpp
@@ -44,8 +44,8 @@ BOOST_AUTO_TEST_CASE(TestIgnition)
     cfg.jvmOptsLen = 5;
     cfg.jvmOpts = opts;
 
-    cfg.jvmInitMem = 1024;
-    cfg.jvmMaxMem = 4096;
+    cfg.jvmInitMem = 256;
+    cfg.jvmMaxMem = 768;
 
     char* cfgPath = getenv("IGNITE_NATIVE_TEST_CPP_CONFIG_PATH");