| OLD | NEW |
| 1 AUTHOR = "Chrome OS Team" | 1 AUTHOR = "Chrome OS Team" |
| 2 NAME = "network_DisableInterface" | 2 NAME = "network_DisableInterface" |
| 3 PURPOSE = "Verify a network interface can be disabled." | 3 PURPOSE = "Verify a network interface can be disabled." |
| 4 CRITERIA = "Fails if the interface can not be disabled/reenabled." | 4 CRITERIA = "Fails if the interface can not be disabled/reenabled." |
| 5 TIME = "SHORT" | 5 TIME = "SHORT" |
| 6 TEST_CATEGORY = "Functional" | 6 TEST_CATEGORY = "Functional" |
| 7 TEST_CLASS = "network" | 7 TEST_CLASS = "network" |
| 8 TEST_TYPE = "client" | 8 TEST_TYPE = "client" |
| 9 | 9 |
| 10 DOC = """ | 10 DOC = """ |
| 11 This test depends on the ifconfig utility to both disable and reenable a | 11 This test depends on the ifconfig utility to both disable and reenable a |
| 12 network interface. | 12 network interface. |
| 13 """ | 13 """ |
| 14 | 14 |
| 15 job.run_test('network_DisableInterface', iface_name='wlan0', tag='wlan0') | 15 job.run_test('network_DisableInterface', iface_name='all', tag='all') |
| 16 job.run_test('network_DisableInterface', iface_name='eth0', tag='eth0') | |
| 17 job.run_test('network_DisableInterface', iface_name='hci0', tag='hci0') | |
| OLD | NEW |