From: Petri Lehtinen Date: Tue, 2 Feb 2010 18:37:00 +0000 (+0200) Subject: test/suites/api: Detect tests correctly X-Git-Tag: v1.3~17 X-Git-Url: http://www.project-moonshot.org/gitweb/?p=jansson.git;a=commitdiff_plain;h=5b1a666cf12e364713392fc9fa4d4162e83f514f test/suites/api: Detect tests correctly The C++ test case didn't work correctly in VPATH builds or with VALGRIND=1. --- diff --git a/test/suites/api/run b/test/suites/api/run index 8688e0f..48c3e7e 100755 --- a/test/suites/api/run +++ b/test/suites/api/run @@ -6,16 +6,29 @@ # it under the terms of the MIT license. See LICENSE for details. is_test() { - [ "${test_name%.c}" != "$test_name" ] && return 0 - [ -x $test_path -a ! -f $test_path.c ] && return 0 - return 1 + case "$test_name" in + *.c|*.cpp|check-exports) + return 0 + ;; + *) + return 1 + ;; + esac } run_test() { - if [ -x $test_path ]; then + if [ "$test_name" = "check-exports" ]; then test_log=$test_log $test_path >$test_log/stdout 2>$test_log/stderr else - $test_runner $suite_builddir/${test_name%.c} \ + 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