jansson/test/suites/api/run

45 lines
1.0 KiB
Plaintext
Raw Normal View History

2009-12-15 05:01:36 +08:00
#!/bin/sh
#
2010-02-03 03:26:11 +08:00
# Copyright (c) 2009, 2010 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.
is_test() {
case "$test_name" in
*.c|*.cpp|check-exports)
return 0
;;
*)
return 1
;;
esac
2009-12-15 05:01:36 +08:00
}
run_test() {
if [ "$test_name" = "check-exports" ]; then
2009-12-21 20:00:57 +08:00
test_log=$test_log $test_path >$test_log/stdout 2>$test_log/stderr
else
case "$test_name" in
*.c)
test_bin=${test_name%.c}
;;
*.cpp)
test_bin=${test_name%.cpp}
;;
esac
$test_runner $suite_builddir/$test_bin \
>$test_log/stdout \
2>$test_log/stderr \
|| return 1
valgrind_check $test_log/stderr || return 1
2009-12-21 20:00:57 +08:00
fi
2009-12-15 05:01:36 +08:00
}
show_error() {
valgrind_show_error && return
cat $test_log/stderr
}
. $top_srcdir/test/scripts/run-tests.sh