Files
fprime/FppTest/array/format.fpp
Tiffany Chieu 44e8917bb7 FPP v1.1.0 Integration (#1630)
* Add enum tests for FPP autocoder

* Filter ai_xml sources against generated sources

* Revise enum tests for FPP autocoder

* Add test utils for FPP autocoder

* Add array tests for FPP autocoder

* Refactor FppTest

* Add .gitignore

* Revise enum tests for FPP autocoder

* Revise array tests for FPP autocoder

* Add string tests for FPP autocoder

* Small changes to FPP autocoder tests

* Add struct tests for FPP autocoder

* Revise enum tests for FPP autocoder

* Update ActiveLogger and Health components for new enum deserialize() behavior

* Make string test suite type-parametrized

* Update READMEs for FppTest

* Register FppTest as a deployment and add README

* Remove quotes from GENERATED_SOURCES

* Begin transition to type-parametrized tests

* Transition to type-parametrized tests

* Small changes to FPP autocoder tests

* Small fix to FPP autocoder tests

* Update fprime-fpp version

* Update expected words for spell checker

* Small fix

* Update fprime-fpp version

* Add file headers

* Update expected words for spell checker

* Update fprime-fpp version

* Update fprime-fpp version
2022-11-09 09:19:34 -08:00

28 lines
640 B
Fortran

array FormatBool = [3] bool format "a {} b"
array FormatU8 = [3] U8 format "a {} b"
array FormatU16Dec = [3] U16 format "a {d} b"
array FormatU32Oct = [3] U32 format "a {o} b"
array FormatU64Hex = [3] U64 format "a {x} b"
array FormatI8 = [3] I8 format "a {} b"
array FormatI16Dec = [3] I16 format "a {d} b"
array FormatI32Oct = [3] I32 format "a {o} b"
array FormatI64Hex = [3] I64 format "a {x} b"
array FormatF32e = [3] F32 format "a {.1e} b"
array FormatF32f = [3] F32 format "a {.2f} b"
array FormatF64g = [3] F64 format "a {.3g} b"
array FormatString = [3] string format "% {}"
array FormatChar = [3] U8 format "a {c} b"