Skip front buffer test if not supported
Bug: 218383959 Test: this Change-Id: I61beba63556c1d6a32e220fffd8e4b4fdfd8bd94
This commit is contained in:
parent
72415bcfa3
commit
694e50be3b
1 changed files with 2 additions and 0 deletions
|
@ -277,6 +277,7 @@ TEST_P(GraphicsFrontBufferTests, FrontBufferGpuToCpu) {
|
|||
if (!supported) {
|
||||
ASSERT_EQ(nullptr, buffer.get())
|
||||
<< "Allocation succeeded, but IMapper::isSupported was false";
|
||||
GTEST_SKIP();
|
||||
} else {
|
||||
ASSERT_NE(nullptr, buffer.get()) << "Allocation failed, but IMapper::isSupported was true";
|
||||
}
|
||||
|
@ -318,6 +319,7 @@ TEST_P(GraphicsFrontBufferTests, FrontBufferGpuToGpu) {
|
|||
if (!supported) {
|
||||
ASSERT_EQ(nullptr, buffer.get())
|
||||
<< "Allocation succeeded, but IMapper::isSupported was false";
|
||||
GTEST_SKIP();
|
||||
} else {
|
||||
ASSERT_NE(nullptr, buffer.get()) << "Allocation failed, but IMapper::isSupported was true";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue