Chromium Code Reviews| Index: Source/bindings/scripts/test_json_import_export.sh |
| diff --git a/Source/bindings/scripts/test_json_import_export.sh b/Source/bindings/scripts/test_json_import_export.sh |
| new file mode 100755 |
| index 0000000000000000000000000000000000000000..d59afacdf1dc3a9526970f00e0d1d1fc48826e38 |
| --- /dev/null |
| +++ b/Source/bindings/scripts/test_json_import_export.sh |
| @@ -0,0 +1,10 @@ |
| +#!/bin/bash |
| + |
| +for i in ~/JSON-pl/*.json |
| +do |
| + if ! ./test_json_import_export.py "$i" |
| + then |
| + echo "$i" |
| + exit 1 |
| + fi |
| +done |