Repository: incubator-impala Updated Branches: refs/heads/master 6cddb952c -> 2e6375285
IMPALA-5245: Disable buffer-allocator-test under ASAN Until we figure out the root cause, disable this test (which exercises code that is under development and not yet enabled by default). Change-Id: I4e685d4482d548cc3e724c20a83ae14890ce56ec Reviewed-on: http://gerrit.cloudera.org:8080/6737 Reviewed-by: Alex Behm <[email protected]> Tested-by: Impala Public Jenkins Project: http://git-wip-us.apache.org/repos/asf/incubator-impala/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-impala/commit/5294bb2d Tree: http://git-wip-us.apache.org/repos/asf/incubator-impala/tree/5294bb2d Diff: http://git-wip-us.apache.org/repos/asf/incubator-impala/diff/5294bb2d Branch: refs/heads/master Commit: 5294bb2d7a7733b4c5b3fae7a14498d85e87c90d Parents: 6cddb95 Author: Dan Hecht <[email protected]> Authored: Wed Apr 26 14:59:32 2017 -0700 Committer: Impala Public Jenkins <[email protected]> Committed: Thu Apr 27 06:27:08 2017 +0000 ---------------------------------------------------------------------- be/src/runtime/bufferpool/buffer-allocator-test.cc | 6 ++++++ 1 file changed, 6 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/5294bb2d/be/src/runtime/bufferpool/buffer-allocator-test.cc ---------------------------------------------------------------------- diff --git a/be/src/runtime/bufferpool/buffer-allocator-test.cc b/be/src/runtime/bufferpool/buffer-allocator-test.cc index 167298d..4aff720 100644 --- a/be/src/runtime/bufferpool/buffer-allocator-test.cc +++ b/be/src/runtime/bufferpool/buffer-allocator-test.cc @@ -177,6 +177,12 @@ TEST_F(SystemAllocatorTest, LargeAllocFailure) { } int main(int argc, char** argv) { +#ifdef ADDRESS_SANITIZER + // These tests are disabled for address sanitizer builds. + // TODO: fix IMPALA-5245 and re-enable. + cerr << "Buffer Allocator Test Skipped (IMPALA-5245)" << endl; + return 0; +#endif ::testing::InitGoogleTest(&argc, argv); impala::InitCommonRuntime(argc, argv, true, impala::TestInfo::BE_TEST); int result = 0;
