python: Check draft version in hpackcheck.py
This commit is contained in:
parent
2f91a7f603
commit
499af94840
|
@ -50,4 +50,11 @@ if __name__ == '__main__':
|
||||||
sys.stderr.write('{}: '.format(filename))
|
sys.stderr.write('{}: '.format(filename))
|
||||||
with open(filename) as f:
|
with open(filename) as f:
|
||||||
input = f.read()
|
input = f.read()
|
||||||
|
|
||||||
|
testdata = json.loads(input)
|
||||||
|
|
||||||
|
if 'draft' not in testdata or testdata['draft'] != 8:
|
||||||
|
sys.stderr.write('Not supported\n')
|
||||||
|
continue
|
||||||
|
|
||||||
testsuite(json.loads(input))
|
testsuite(json.loads(input))
|
||||||
|
|
Loading…
Reference in New Issue