Lines Matching refs:name
18 local name
21 check_err $? "Failed to add short alternative name"
24 check_err $? "Failed to do link show with short alternative name"
26 name=$(echo $output | jq -e -r ".[0].altnames[0]")
27 check_err $? "Failed to get short alternative name from link show JSON"
29 [ "$name" == "$SHORT_NAME" ]
30 check_err $? "Got unexpected short alternative name from link show JSON"
33 check_err $? "Failed to do link show with original name"
36 check_err $? "Failed to add long alternative name"
39 check_err $? "Failed to do link show with long alternative name"
41 name=$(echo $output | jq -e -r ".[0].altnames[1]")
42 check_err $? "Failed to get long alternative name from link show JSON"
44 [ "$name" == "$LONG_NAME" ]
45 check_err $? "Got unexpected long alternative name from link show JSON"
48 check_err $? "Failed to delete short alternative name"
51 check_fail $? "Unexpected success while trying to do link show with deleted short alternative name"
53 # long name is left there on purpose to be removed alongside the device
60 ip link add name $DUMMY_DEV type dummy
66 ip link del name $DUMMY_DEV