jansson/test/suites/valid-strip/run

30 lines
656 B
Plaintext
Raw Normal View History

2009-12-15 05:01:36 +08:00
#!/bin/sh
#
2011-01-21 03:28:54 +08:00
# Copyright (c) 2009-2011 Petri Lehtinen <petri@digip.org>
2009-12-15 05:01:36 +08:00
#
# Jansson is free software; you can redistribute it and/or modify
# it under the terms of the MIT license. See LICENSE for details.
export JSON_SORT_KEYS=1
2009-12-15 05:01:36 +08:00
is_test() {
test -d $test_path
}
run_test() {
$json_process <$test_path/input >$test_log/stdout 2>$test_log/stderr
valgrind_check $test_log/stderr || return 1
cmp -s $test_path/output $test_log/stdout
}
show_error() {
valgrind_show_error && return
echo "EXPECTED OUTPUT:"
nl -bn $test_path/output
echo "ACTUAL OUTPUT:"
nl -bn $test_log/stdout
}
. $top_srcdir/test/scripts/run-tests.sh