mirror of
https://github.com/open-source-parsers/jsoncpp.git
synced 2025-09-09 04:44:48 -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"]),
|
||||
)
|
||||
|
||||
########
|
||||
|
||||
[py_test(
|
||||
name = "runjson_%s_test" % "_".join(f.split("/")),
|
||||
srcs = ["runjsontests.py"],
|
||||
|
@ -102,8 +102,8 @@ def runAllTests(jsontest_executable_path, input_path = None,
|
||||
|
||||
tests = [
|
||||
test for test in tests
|
||||
if os.path.basename(test) not in known and
|
||||
os.path.basename(os.path.dirname(test)) == "jsonchecker"
|
||||
if os.path.basename(test) not in known or
|
||||
os.path.basename(os.path.dirname(test)) != "jsonchecker"
|
||||
]
|
||||
|
||||
failed_tests = []
|
||||
|
Loading…
x
Reference in New Issue
Block a user