summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLubomir Rintel <lkundrak@v3.sk>2015-06-17 18:03:24 +0200
committerLubomir Rintel <lkundrak@v3.sk>2015-06-17 18:03:24 +0200
commit216bad5b6110c3d57bd52573593b2403052fd944 (patch)
tree24293a0659916d70dd903500c61e70fcff39e8e6
parent1bf69c78e917444d376ab6cb16af56149534958c (diff)
downloadNetworkManager-216bad5b6110c3d57bd52573593b2403052fd944.tar.gz
contrib/bkr: avoid running wireless tests on poor quality hardware
-rwxr-xr-xcontrib/rh-bkr/bkr.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/contrib/rh-bkr/bkr.py b/contrib/rh-bkr/bkr.py
index 38912fdd4d..2b4d379fab 100755
--- a/contrib/rh-bkr/bkr.py
+++ b/contrib/rh-bkr/bkr.py
@@ -621,8 +621,14 @@ class CmdSubmit(CmdBase):
elif hosttype == 'infiniband':
return '<hostname op="=" value="rdma-qe-11.lab.bos.redhat.com"/>'
elif hosttype == 'wifi':
- # 8086:08ae (wlwifi,iwldvm) Intel Corporation Centrino Wireless-N 100 doesn't support AP mode
- return '<group op="=" value="wireless"/><hostname op="like" value="wlan-r2%.wlan.rhts.eng.bos.redhat.com"/><device op="!=" vendor_id="8086" device_id="08ae"/>'
+ return '''
+ <group op="=" value="wireless"/>
+ <hostname op="like" value="wlan-r2%.wlan.rhts.eng.bos.redhat.com"/>
+ <!-- 8086:08ae (wlwifi,iwldvm) Intel Corporation Centrino Wireless-N 100 doesn't support AP mode -->
+ <device op="!=" vendor_id="8086" device_id="08ae"/>
+ <!-- Pick an Intel, so that we're not scheduled on some poor Realtek chip -->
+ <device op="==" driver="iwlwifi"/>
+ '''
else:
return '<group op="=" value="desktopqe-net"/>'