mirror of https://github.com/python/cpython
Fix @requires_freebsd_version and @requires_linux_version decorators of
test.support, run the test if the platform matchs!
This commit is contained in:
parent
b84fc0fd9f
commit
3b44a409de
|
@ -430,6 +430,8 @@ def _requires_unix_version(sysname, min_version):
|
|||
raise unittest.SkipTest(
|
||||
"%s version %s or higher required, not %s"
|
||||
% (sysname, min_version_txt, version_txt))
|
||||
return func(*args, **kw)
|
||||
wrapper.min_version = min_version
|
||||
return wrapper
|
||||
return decorator
|
||||
|
||||
|
|
Loading…
Reference in New Issue