Files
compute-runtime/unit_tests/helpers/linux/kmd_notify_linux_tests.cpp
Artur Harasimiuk 40146291ad Update copyright headers
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>
2018-09-20 18:02:35 +02:00

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