Browse Source

tests: Do not mark proxyarp_open failed if ebtables is not available

Signed-off-by: Jouni Malinen <j@w1.fi>
Jouni Malinen 10 years ago
parent
commit
01c87519a3
1 changed files with 5 additions and 2 deletions
  1. 5 2
      tests/hwsim/test_ap_hs20.py

+ 5 - 2
tests/hwsim/test_ap_hs20.py

@@ -3050,8 +3050,11 @@ def test_proxyarp_open(dev, apdev, params):
     try:
         res = _test_proxyarp_open(dev, apdev, params)
     finally:
-        subprocess.call(['ebtables', '-F', 'FORWARD'])
-        subprocess.call(['ebtables', '-F', 'OUTPUT'])
+        try:
+            subprocess.call(['ebtables', '-F', 'FORWARD'])
+            subprocess.call(['ebtables', '-F', 'OUTPUT'])
+        except:
+            pass
         subprocess.call(['ip', 'link', 'set', 'dev', 'ap-br0', 'down'],
                         stderr=open('/dev/null', 'w'))
         subprocess.call(['brctl', 'delbr', 'ap-br0'],