Mercurial > hg > sonic-annotator
diff tests/include.sh @ 208:c17b184c16db
Update JAMS output to JAMS v0.2.0. We now (for the first time?!) write actual JAMS schema-compliant output when possible, though it isn't possible for many types of plugin. The output for all tested combinations of transforms is valid JSON even where it isn't schema-compliant.
author | Chris Cannam |
---|---|
date | Wed, 04 Nov 2015 10:07:29 +0000 |
parents | 1f8fef5c6ea2 |
children | b1ac129e2c00 |
line wrap: on
line diff
--- a/tests/include.sh Tue Nov 03 14:31:59 2015 +0000 +++ b/tests/include.sh Wed Nov 04 10:07:29 2015 +0000 @@ -62,7 +62,12 @@ jsoncompare() { a="$1" b="$2" + cat "$a" | json_reformat > "${a}__" + cat "$b" | json_reformat > "${b}__" cmp -s "$a" "$b" + rv=$? + rm "${a}__" "${b}__" + return $rv } faildiff() {