mirror of
https://github.com/akheron/jansson.git
synced 2025-04-04 13:05:02 +00:00
Fix tests
This commit is contained in:
parent
33a6c95d56
commit
9699de8600
7 changed files with 19 additions and 1 deletions
|
@ -535,6 +535,11 @@ if (NOT JANSSON_WITHOUT_TESTS)
|
|||
if (IS_DIRECTORY ${TESTDIR})
|
||||
get_filename_component(TNAME ${TESTDIR} NAME)
|
||||
|
||||
if ((USE_DTOA AND EXISTS ${TESTDIR}/skip_if_dtoa) OR
|
||||
(NOT USE_DTOA AND EXISTS ${TESTDIR}/skip_unless_dtoa))
|
||||
continue()
|
||||
endif()
|
||||
|
||||
if (JANSSON_TEST_WITH_VALGRIND)
|
||||
add_test(memcheck__${SUITE}__${TNAME}
|
||||
${MEMCHECK_COMMAND} ${SUITE_TEST_CMD} ${TESTDIR})
|
||||
|
|
1
test/suites/valid/real-exponent-no-dtoa/input
Normal file
1
test/suites/valid/real-exponent-no-dtoa/input
Normal file
|
@ -0,0 +1 @@
|
|||
[123e45]
|
1
test/suites/valid/real-exponent-no-dtoa/output
Normal file
1
test/suites/valid/real-exponent-no-dtoa/output
Normal file
|
@ -0,0 +1 @@
|
|||
[1.2299999999999999e47]
|
0
test/suites/valid/real-exponent-no-dtoa/skip_if_dtoa
Normal file
0
test/suites/valid/real-exponent-no-dtoa/skip_if_dtoa
Normal file
|
@ -1 +1 @@
|
|||
[1.2299999999999999e47]
|
||||
[1.23e47]
|
0
test/suites/valid/real-exponent/skip_unless_dtoa
Normal file
0
test/suites/valid/real-exponent/skip_unless_dtoa
Normal file
|
@ -5,11 +5,22 @@
|
|||
# Jansson is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the MIT license. See LICENSE for details.
|
||||
|
||||
dtoa_enabled() {
|
||||
grep -q "DTOA_ENABLED 1" $top_builddir/jansson_private_config.h
|
||||
}
|
||||
|
||||
is_test() {
|
||||
test -d $test_path
|
||||
}
|
||||
|
||||
do_run() {
|
||||
if [ -f $test_path/skip_unless_dtoa ]; then
|
||||
dtoa_enabled || return 77
|
||||
fi
|
||||
if [ -f $test_path/skip_if_dtoa ]; then
|
||||
dtoa_enabled && return 77
|
||||
fi
|
||||
|
||||
variant=$1
|
||||
s=".$1"
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue