mirror of
https://github.com/open-source-parsers/jsoncpp.git
synced 2025-09-10 13:25:16 -04:00
Reverse the polarity to fix a bug.
This commit is contained in:
parent
0383d14b76
commit
bb4ac3c6c4
@ -3,8 +3,6 @@ filegroup(
|
|||||||
srcs = glob(["data/**", "jsonchecker/**"], exclude=["**/*.json"]),
|
srcs = glob(["data/**", "jsonchecker/**"], exclude=["**/*.json"]),
|
||||||
)
|
)
|
||||||
|
|
||||||
########
|
|
||||||
|
|
||||||
[py_test(
|
[py_test(
|
||||||
name = "runjson_%s_test" % "_".join(f.split("/")),
|
name = "runjson_%s_test" % "_".join(f.split("/")),
|
||||||
srcs = ["runjsontests.py"],
|
srcs = ["runjsontests.py"],
|
||||||
|
@ -102,8 +102,8 @@ def runAllTests(jsontest_executable_path, input_path = None,
|
|||||||
|
|
||||||
tests = [
|
tests = [
|
||||||
test for test in tests
|
test for test in tests
|
||||||
if os.path.basename(test) not in known and
|
if os.path.basename(test) not in known or
|
||||||
os.path.basename(os.path.dirname(test)) == "jsonchecker"
|
os.path.basename(os.path.dirname(test)) != "jsonchecker"
|
||||||
]
|
]
|
||||||
|
|
||||||
failed_tests = []
|
failed_tests = []
|
||||||
|
Loading…
x
Reference in New Issue
Block a user