summaryrefslogtreecommitdiffstats
path: root/LICENSE
diff options
context:
space:
mode:
authorJieqiang Wang <jieqiang.wang@arm.com>2022-09-21 17:17:22 +0800
committerBeno�t Ganne <bganne@cisco.com>2022-10-25 15:18:02 +0000
commitbf93670c515da131f36809091c13d3a0638fff2a (patch)
tree39e8a79a5ac1c7d1b9a71f7d5a141b431c21502a /LICENSE
parent813c1bd257ddcc573422083bd66cc8b8ed79d5b2 (diff)
rdma: fix ipv4 checksum check in rdma-input node
- cqe_flags pointer should be incremented accordingly otherwise only the first element in cqe_flags will be updated - flag l3_ok should be set for match variable when verifying if packets are IPv4 packets with flag l3_ok set - mask/match variables should be converted to network byte order to match the endianness of cqe_flags - vector processing of checking cqe flags will set return value to 0xFFFF by mistake if packet numbers are not multiple of 16(VEC256) or 8(VEC128) Type: fix Signed-off-by: Jieqiang Wang <jieqiang.wang@arm.com> Change-Id: I9fec09e449fdffbb0ace8e5a6ccfeb6869b5cac1
Diffstat (limited to 'LICENSE')
0 files changed, 0 insertions, 0 deletions
410'>rls2410 Integration testsGrokmirror user
aboutsummaryrefslogtreecommitdiffstats
path: root/tests/__init__.robot
blob: 2e17675a3130510e291f959dd414d840e238f16b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Copyright (c) 2019 Cisco and/or its affiliates.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at:
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

*** Settings ***
| Documentation | Set global variables common to all tests.
| Resource | resources/libraries/robot/robot_enhancements.robot
| Suite Setup | Set Common Variables

*** Keywords ***
| Set Common Variables
| | [Documentation] | Set the following global variables.
| | ...
| | ... | While currently only MRR tests are using the values,
| | ... | any new test might decide to use them,
| | ... | so variable names are generic for "perf" scope.
| | ...
| | ... | perf_trial_multiplicity - Number of trials to execute in MRR test.
| | ... | perf_trial_duration - Duration of one trial in MRR test.
| | ... | dut1_uuid - UUID string of DUT1 /tmp volume created outside of the
| | ... |   DUT1 docker in case of vpp-device test. ${EMPTY} value means that
| | ... |   /tmp directory is inside the DUT1 docker
| | ...
| | Ensure Global Variable | perf_trial_multiplicity | 10
| | Ensure Global Variable | perf_trial_duration | 1
| | Ensure Global Variable | dut1_uuid | ${EMPTY}