Questions tagged [ldra]

For use with questions relating to the LDRA ToolSuite and the TB component products

LDRA is a UK-based company which produces the LDRA ToolSuite family software testing tools, including TBunit, TBrun, TBmanager, TBmisra etc

Questions relating to the MISRA C/C++ guidelines should additionally be tagged with misra

4 questions
1
vote
1 answer

Why is LDRA TBRun missing its own seemingly basic function calls?

I'm using LDRA's TBRun on an existing project for an STM32L4 chip using Keil uVision, and trying to run a unit test sequence that is known to have succeeded on another person's machine. I'm now tasked with trying to open it on my own machine and…
CivFan
  • 13,560
  • 9
  • 41
  • 58
0
votes
1 answer

Where does $(ProjectConfiguration) get set in an LDRA TBrun TCF file?

Long story short Where is the variable $(ProjectConfiguration) set in an LDRA TBrun TCF file? Context I have an LDRA TBrun TCF file I'm trying to run using the command-line runner, contbrun.exe. It's failing because it's referencing the incorrect…
CivFan
  • 13,560
  • 9
  • 41
  • 58
0
votes
1 answer

How do you... open an existing unit test project in LDRA TBrun?

I have an existing project that has quite a lot of LDRA TBrun .tcf files with test cases for the project. I'm trying to get up and running on these existing test cases and rerun the tests. How... do I do this? There doesn't seem to be a way to just,…
CivFan
  • 13,560
  • 9
  • 41
  • 58
0
votes
1 answer

Double pointer typecast in C++

I have below C++ code snippet which works perfectly fine: Address = **(uint32_t **)(0x12345678); I have a LDRA warning at the line mentioned above Use of C type cast. Can anyone please help me in type casting above instruction to C++…