Home
last modified time | relevance | path

Searched refs:NAMES (Results 1 – 4 of 4) sorted by relevance

/Linux-v4.19/tools/testing/selftests/tc-testing/plugin-lib/
DnsPlugin.py60 cmdlist.insert(0, self.args.NAMES['NS'])
82 cmd = 'ip netns add {}'.format(self.args.NAMES['NS'])
86 cmd = 'ip link set $DEV1 netns {}'.format(self.args.NAMES['NS'])
90 cmd = 'ip -n {} link set $DEV1 up'.format(self.args.NAMES['NS'])
93 cmd = 'ip link set $DEV2 netns {}'.format(self.args.NAMES['NS'])
95 cmd = 'ip -n {} link set $DEV2 up'.format(self.args.NAMES['NS'])
104 cmd = 'ip netns delete {}'.format(self.args.NAMES['NS'])
140 subcmd = tcmd.safe_substitute(self.args.NAMES)
/Linux-v4.19/tools/testing/selftests/tc-testing/
Dtdc.py112 subcmd = tcmd.safe_substitute(NAMES)
180 global NAMES
189 NAMES['TESTID'] = tidx['id']
235 del(NAMES['TESTID'])
427 global NAMES
430 NAMES['TC'] = args.path
432 NAMES['DEV2'] = args.device
433 if not os.path.isfile(NAMES['TC']):
434 print("The specified tc path " + NAMES['TC'] + " does not exist.")
644 args.NAMES = NAMES
Dtdc_config.py10 NAMES = { variable
32 NAMES.update(EXTRA_NAMES)
DREADME40 in the tdc_config.py file. Find the 'TC' entry in the NAMES dictionary and
100 your needs. Any value in the NAMES dictionary can be altered without affecting
107 The NAMES values are used to substitute into the commands in the test cases.