aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsrc/ekeyword/ekeyword.py3
-rwxr-xr-xsrc/ekeyword/ekeyword_unittest.py9
2 files changed, 7 insertions, 5 deletions
diff --git a/src/ekeyword/ekeyword.py b/src/ekeyword/ekeyword.py
index 3fa74c1..080e04f 100755
--- a/src/ekeyword/ekeyword.py
+++ b/src/ekeyword/ekeyword.py
@@ -151,6 +151,9 @@ def process_keywords(keywords, ops, arch_status=None):
# master list. If it lacks some keywords, then we might miss
# somethings here, but not much we can do.
arches = old_arches
+ # We ignore the glob arch as we never want to tweak it.
+ if '*' in arches:
+ arches.remove('*')
else:
arches = (oarch,)
diff --git a/src/ekeyword/ekeyword_unittest.py b/src/ekeyword/ekeyword_unittest.py
index 00c295f..b491db0 100755
--- a/src/ekeyword/ekeyword_unittest.py
+++ b/src/ekeyword/ekeyword_unittest.py
@@ -176,12 +176,11 @@ class TestProcessKeywords(unittest.TestCase):
'arm': 'stable',
'arm64': 'exp',
'm68k': 'dev',
- 'mips': 'dev',
's390': 'dev',
'sh': 'dev',
}
- self._test('alpha arm arm64 m68k mips arm-linux', ops,
- '~alpha ~arm ~arm64 ~m68k ~mips ~arm-linux', arch_status)
+ self._test('-* ~* * alpha arm arm64 m68k arm-linux', ops,
+ '-* ~* * ~alpha ~arm ~arm64 ~m68k ~arm-linux', arch_status)
def testAllMultiUnstableStable(self):
ops = (
@@ -194,8 +193,8 @@ class TestProcessKeywords(unittest.TestCase):
'arm64': 'exp',
'm68k': 'dev',
}
- self._test('alpha arm arm64 m68k', ops,
- '~alpha arm ~arm64 ~m68k', arch_status)
+ self._test('-* ~* * alpha arm arm64 m68k', ops,
+ '-* ~* * ~alpha arm ~arm64 ~m68k', arch_status)
class TestProcessContent(unittest.TestCase):