vts: VtsHalGraphicsMapperV2_1TargetTest fixup's

1) handles allocated through 'allocate' should be removed through
   'freeBuffer'.

2) make use of intended buffer handle in GetTransportSizeBadBuffer.

Bug: 146444563
Test: build, boot, VtsHalGraphicsMapperV2_1TargetTest

Cherry pick to master from android10-tests-dev

Change-Id: I6c1a67fc36dbc653ec2ada6a335d685d21e82800
Merged-In: I6c1a67fc36dbc653ec2ada6a335d685d21e82800
Signed-off-by: Pierre Couillaud <pierre.couillaud@broadcom.com>
This commit is contained in:
Pierre Couillaud 2020-02-27 11:48:01 -08:00 committed by Jay Patel
parent d24ab2ba3a
commit 49f262471d

View file

@ -94,7 +94,7 @@ TEST_P(GraphicsMapperHidlTest, ValidateBufferSizeBadBuffer) {
mDummyDescriptorInfo.width);
ASSERT_EQ(Error::BAD_BUFFER, ret)
<< "validateBufferSize with raw buffer handle did not fail with BAD_BUFFER";
native_handle_delete(rawBufferHandle);
ASSERT_NO_FATAL_FAILURE(mGralloc->freeBuffer(rawBufferHandle));
}
/**
@ -179,11 +179,11 @@ TEST_P(GraphicsMapperHidlTest, GetTransportSizeBadBuffer) {
ASSERT_NO_FATAL_FAILURE(rawBufferHandle = const_cast<native_handle_t*>(
mGralloc->allocate(mDummyDescriptorInfo, false)));
mGralloc->getMapper()->getTransportSize(
invalidHandle, [&](const auto& tmpError, const auto&, const auto&) {
ASSERT_EQ(Error::BAD_BUFFER, tmpError)
<< "getTransportSize with raw buffer handle did not fail with BAD_BUFFER";
});
native_handle_delete(rawBufferHandle);
rawBufferHandle, [&](const auto& tmpError, const auto&, const auto&) {
ASSERT_EQ(Error::BAD_BUFFER, tmpError)
<< "getTransportSize with raw buffer handle did not fail with BAD_BUFFER";
});
ASSERT_NO_FATAL_FAILURE(mGralloc->freeBuffer(rawBufferHandle));
}
/**