From a75e1632c8dc924b41be9a78a8a21b533eddcc97 Mon Sep 17 00:00:00 2001 From: Vlad Zolotarov Date: Thu, 7 Dec 2017 20:22:12 -0500 Subject: [PATCH] test.py: limit the tests to run on 2 shards with 4GB of memory Signed-off-by: Vlad Zolotarov (cherry picked from commit 57a6ed5aaa346a3ed7c88a172b738e228b957341) --- test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test.py b/test.py index d2bbb4f68d..7901887db6 100755 --- a/test.py +++ b/test.py @@ -148,9 +148,9 @@ if __name__ == "__main__": for mode in modes_to_run: prefix = os.path.join('build', mode, 'tests') for test in other_tests: - test_to_run.append((os.path.join(prefix, test), 'other')) + test_to_run.append((os.path.join(prefix, test), 'other', '-c2 -m4G'.split())) for test in boost_tests: - test_to_run.append((os.path.join(prefix, test), 'boost')) + test_to_run.append((os.path.join(prefix, test), 'boost', '-c2 -m4G'.split())) if 'release' in modes_to_run: test_to_run.append(('build/release/tests/lsa_async_eviction_test', 'other',