mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-29 17:13:29 +08:00
Updating files modified in 2018 only. Older files remain with old style copyright header Change-Id: Ic99f2e190ad74b4b7f2bd79dd7b9fa5fbe36ec92 Signed-off-by: Artur Harasimiuk <artur.harasimiuk@intel.com>
31 lines
879 B
C++
31 lines
879 B
C++
/*
|
|
* Copyright (C) 2018 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/helpers/kmd_notify_properties.h"
|
|
#include "runtime/helpers/options.h"
|
|
|
|
#include "test.h"
|
|
|
|
namespace OCLRT {
|
|
|
|
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 OCLRT
|