mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-04 12:49:36 -06:00
The current name was chosen from an earlier design iteration of the command-line option name. Rename the case to match the final name.
25 lines
437 B
Python
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)
|