Skip to content
Snippets Groups Projects
Commit 80309fa2 authored by Patrick Mezard's avatar Patrick Mezard
Browse files

hghave: feature absence can be checked by prefixing with 'no-'

parent f94dbc6c
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env python
"""Test the running system for features availability. Exit with zero
if all features are there, non-zero otherwise.
if all features are there, non-zero otherwise. If a feature name is
prefixed with "no-", the absence of feature is tested.
"""
import optparse
import os
......@@ -67,8 +68,12 @@
failures += 1
for feature in args:
negate = feature.startswith('no-')
if negate:
feature = feature[3:]
if feature not in checks:
error('hghave: unknown feature: ' + feature)
continue
check, desc = checks[feature]
......@@ -70,7 +75,7 @@
if feature not in checks:
error('hghave: unknown feature: ' + feature)
continue
check, desc = checks[feature]
if not check():
if not negate and not check():
error('hghave: missing feature: ' + desc)
......@@ -76,4 +81,6 @@
error('hghave: missing feature: ' + desc)
elif negate and check():
error('hghave: unexpected feature: ' + desc)
if failures != 0:
sys.exit(1)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment