mirror of
https://github.com/nasa/fprime.git
synced 2026-04-11 20:43:43 -05:00
* 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
28 lines
640 B
Fortran
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"
|