Merge pull request #11455 from hugueskamba/hk-add-ability-to-run-minimal-printf-floating-point-tests-manually

minimal-printf: Add capability to run floating point tests manually
pull/11534/head
Martin Kojtal 2019-09-19 13:57:13 +02:00 committed by GitHub
commit 8689c3fbc1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 1 deletions

View File

@ -6,6 +6,6 @@ This document describes how to run minimal-printf tests.
You can use the following command to run tests:
`mbed test -m K64F -t GCC_ARM -n *printf* -v -c`
`mbed test -m K64F -t GCC_ARM -n *printf* -v -c --app-config TESTS/mbed_platform/minimal-printf/compliance/test_config.json`
Do not use --profile minimal-printf so minimal-printf is not compared with itself.

View File

@ -0,0 +1,7 @@
{
"target_overrides": {
"*": {
"platform.minimal-printf-enable-floating-point": true
}
}
}