File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -7,5 +7,4 @@ urMemGetInfoTest.InvalidNullPointerParamValue/Intel_R__oneAPI_Unified_Runtime_ov
7
7
urMemGetInfoTest.InvalidNullPointerPropSizeRet/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___UR_MEM_INFO_SIZE
8
8
urMemGetInfoTest.InvalidNullPointerPropSizeRet/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___UR_MEM_INFO_CONTEXT
9
9
urMemGetInfoImageTest.Success/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___UR_MEM_INFO_SIZE
10
- urMemGetInfoImageTest.Success/Intel_R__oneAPI_Unified_Runtime_over_Level_Zero___{{.*}}___UR_MEM_INFO_CONTEXT
11
10
{{Segmentation fault|Aborted}}
Original file line number Diff line number Diff line change 2
2
// Part of the Unified-Runtime Project, under the Apache License v2.0 with LLVM Exceptions.
3
3
// See LICENSE.TXT
4
4
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
5
+ #include < array>
5
6
#include < map>
6
7
#include < uur/fixtures.h>
7
8
8
9
using urMemGetInfoTest = uur::urMemBufferTestWithParam<ur_mem_info_t >;
9
10
10
- static constexpr std::array mem_info_values = {UR_MEM_INFO_SIZE,
11
- UR_MEM_INFO_CONTEXT};
11
+ static constexpr std::array< ur_mem_info_t , 2 > mem_info_values{
12
+ UR_MEM_INFO_SIZE, UR_MEM_INFO_CONTEXT};
12
13
static std::unordered_map<ur_mem_info_t , size_t > mem_info_size_map = {
13
14
{UR_MEM_INFO_SIZE, sizeof (size_t )},
14
15
{UR_MEM_INFO_CONTEXT, sizeof (ur_context_handle_t )},
You can’t perform that action at this time.
0 commit comments