Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
433da1fc047bb39a263eefca4bdb2b1972f1d2ce
/
.
/
tests
/
run-make
/
libtest-json
/
validate_json.py
blob: 657f732f2bffd8804718c2e716c5754c55eb8536 [
file
] [
log
] [
blame
]
#!/usr/bin/env python
import
sys
import
json
# Try to decode line in order to ensure it is a valid JSON document
for
line
in
sys
.
stdin
:
json
.
loads
(
line
)