30 lines
873 B
C++
30 lines
873 B
C++
/*
|
|
* Copyright (C) 2018-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "core/helpers/kmd_notify_properties.h"
|
|
#include "core/helpers/options.h"
|
|
#include "test.h"
|
|
|
|
namespace NEO {
|
|
|
|
class MockKmdNotifyHelper : public KmdNotifyHelper {
|
|
public:
|
|
using KmdNotifyHelper::getBaseTimeout;
|
|
|
|
MockKmdNotifyHelper(const KmdNotifyProperties *newProperties) : KmdNotifyHelper(newProperties){};
|
|
};
|
|
|
|
TEST(KmdNotifyLinuxTests, givenTaskCountDiffGreaterThanOneWhenBaseTimeoutRequestedThenMultiply) {
|
|
auto localProperties = (platformDevices[0]->capabilityTable.kmdNotifyProperties);
|
|
localProperties.delayKmdNotifyMicroseconds = 10;
|
|
const int64_t multiplier = 10;
|
|
|
|
MockKmdNotifyHelper helper(&localProperties);
|
|
EXPECT_EQ(localProperties.delayKmdNotifyMicroseconds * multiplier, helper.getBaseTimeout(multiplier));
|
|
}
|
|
} // namespace NEO
|