diff options
Diffstat (limited to 'meta-oe/recipes-devtools/nlohmann-json/files/run-ptest')
-rwxr-xr-x | meta-oe/recipes-devtools/nlohmann-json/files/run-ptest | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/meta-oe/recipes-devtools/nlohmann-json/files/run-ptest b/meta-oe/recipes-devtools/nlohmann-json/files/run-ptest index 2f00267d50..d39ee6df8f 100755 --- a/meta-oe/recipes-devtools/nlohmann-json/files/run-ptest +++ b/meta-oe/recipes-devtools/nlohmann-json/files/run-ptest | |||
@@ -3,7 +3,11 @@ | |||
3 | cd tests | 3 | cd tests |
4 | for atest in test-* ; do | 4 | for atest in test-* ; do |
5 | rm -rf tests.log | 5 | rm -rf tests.log |
6 | ./${atest} > tests.log 2>&1 | 6 | if [ ${atest} = "test-locale-cpp_cpp11" ]; then |
7 | ./${atest} --test-case-exclude="locale-dependent test (LC_NUMERIC=de_DE)" > tests.log 2>&1 | ||
8 | else | ||
9 | ./${atest} > tests.log 2>&1 | ||
10 | fi | ||
7 | if [ $? = 0 ] ; then | 11 | if [ $? = 0 ] ; then |
8 | echo "PASS: ${atest}" | 12 | echo "PASS: ${atest}" |
9 | else | 13 | else |