Files
CMake/Tests/RunCMake/CTestCommandLine/show_only_json_check.py
Brad King 75a7a23746 Tests: Rename RunCMake.CTestCommandLine show-only test cases
The current name was chosen from an earlier design iteration of the
command-line option name.  Rename the case to match the final name.
2019-01-17 10:57:51 -05:00

25 lines
437 B
Python

import sys
import json
import re
def is_bool(x):
return isinstance(x, bool)
def is_dict(x):
return isinstance(x, dict)
def is_list(x):
return isinstance(x, list)
def is_int(x):
return isinstance(x, int) or isinstance(x, long)
def is_string(x):
return isinstance(x, str) or isinstance(x, unicode)
def check_re(x, regex):
assert re.search(regex, x)
with open(sys.argv[1]) as f:
ctest_json = json.load(f)