idct_test: don't use std::nothrow anymore

But still check for NULL before calling Init()

Change-Id: I2bf2887e1064c9103d29c542d20365c0aea75d76
This commit is contained in:
Johann 2017-06-08 10:09:23 -07:00
parent 943f9ee25c
commit 92373a5bb2

View File

@ -30,11 +30,14 @@ class IDCTTest : public ::testing::TestWithParam<IdctFunc> {
virtual void SetUp() {
UUT = GetParam();
input = new (std::nothrow) Buffer<int16_t>(4, 4, 0);
input = new Buffer<int16_t>(4, 4, 0);
ASSERT_TRUE(input != NULL);
ASSERT_TRUE(input->Init());
predict = new (std::nothrow) Buffer<uint8_t>(4, 4, 3);
predict = new Buffer<uint8_t>(4, 4, 3);
ASSERT_TRUE(predict != NULL);
ASSERT_TRUE(predict->Init());
output = new (std::nothrow) Buffer<uint8_t>(4, 4, 3);
output = new Buffer<uint8_t>(4, 4, 3);
ASSERT_TRUE(output != NULL);
ASSERT_TRUE(output->Init());
}