Correct variable names to camelCase convention

Change-Id: I87c2435d57e50016ab0deb473e30c230424dead7
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
Mateusz Jablonski
2020-03-12 07:54:21 +01:00
committed by sys_ocldev
parent 2213b8808f
commit 820f5ac17b
7 changed files with 38 additions and 38 deletions

View File

@ -27,14 +27,14 @@ struct MemoryManagementFixture {
void clearFailingAllocation(void);
::testing::AssertionResult assertLeak(
const char *leak_expr,
const char *leakExpr,
size_t leakIndex);
void checkForLeaks(void);
typedef std::function<void(size_t)> InjectedFunction;
void injectFailures(InjectedFunction &method, uint32_t maxIndex = 0);
void injectFailureOnIndex(InjectedFunction &method, uint32_t Index);
void injectFailureOnIndex(InjectedFunction &method, uint32_t index);
// Used to keep track of # of allocations prior at SetUp time
// Gets compared to # at TearDown time

View File

@ -35,7 +35,7 @@ class ProgramFixture {
void CreateProgramWithSource(cl_context pContext,
cl_device_id *pDeviceList,
const std::string &SourceFileName);
const std::string &sourceFileName);
protected:
virtual void SetUp() {