blob: a044bb670e724a12c8021b00870754b688dc0c27 [file] [log] [blame]
Scott Zawalski8cbd08b2012-01-25 20:08:53 -05001#!/bin/bash
2#
3# Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
4# Use of this source code is governed by a BSD-style license that can be
5# found in the LICENSE file.
6
7set -e
Alex Miller4f341702013-03-25 12:39:12 -07008echo "This assumes you have python 2.4 or later installed"
Scott Zawalski8cbd08b2012-01-25 20:08:53 -05009for json in *.json; do
10 echo "Validating $json"
Alex Miller4f341702013-03-25 12:39:12 -070011 python -c "import json; json.load(open('$json'))" || \
Scott Zawalski8cbd08b2012-01-25 20:08:53 -050012 printf "\n\n$json is broken!!!!\n\n"
13done