Compiling C++Builder 2007 Applications With Debug Information

Applies to TestComplete 15.63, last modified on April 23, 2024

Debug Info Agent™ exposes public, published, protected and private members of objects in C++Builder applications as soon as the application is compiled with debug information. This topic explains how to include debug information into applications created with CodeGear C++Builder 2007. To learn how to prepare applications created with other C++Builder versions, see Implementing Debug Info Agent™ Support in Applications.

Note: Debug Info Agent™ is incompatible with tools that change the debug information format. An example of such a tool is EurekaLog 7. We recommend that you disable EurekaLog when compiling an application aimed for automated testing with TestComplete. Otherwise, you will be unable to access private, protected and public methods and properties of your C++Builder 2007 applications from tests.

To include debug information into your C++Builder application, follow these steps:

  1. Open your project in CodeGear C++Builder 2007.

  2. Choose Project | Options from the main menu to open the Project Options dialog.

  3. Switch to the C++ Compiler | Optimizations category. In the radio group on the right, select None:

  4. Switch to the Linker | Linking category and enable the Full debug information option in the Linking group:

  5. Switch to the Path and Defines category and examine the Library Path. If the path contains the $(BDS)\lib\release folder, replace it with $(BDS)\lib\debug:

  6. It is recommended that you turn off the Build with runtime packages option in the Packages settings group:

    If this property is checked, C++Builder creates Borland package library (.bpl) files when compiling the application. TestComplete cannot access debug information in these files and some controls. If this property is unchecked, all information is included in a single executable and can be accessed by TestComplete. For more information about runtime packeges, see About Runtime Packages.

    If, for some reason, you cannot turn off the Build with runtime packages option, TestComplete may not be able to get access to the application's internal methods and properties. To resolve the problem, enable the Read debug information for statically linked libraries project option in TestComplete.
  7. Once you have completed these steps, click OK to save the changes and close the Project Options dialog.

  8. Re-build the application.

Note: C++Builder debug information is stored in .tds files. Make sure that the generated .tds files reside in the same folders as the appropriate modules of the application under test, otherwise the Debug Info Agent™ will not be able to access application internals.

Before delivering your application, remember to compile it without debug information in order to reduce the application size.

To make TestComplete recognize TMS Software VCL controls in the tested C++Builder Open Application properly and obtain access to their properties and methods, we recommend that you re-compile the utilized TMS components with full debug information before including them in your C++Builder application. To learn how to prepare these components for C++Builder applications, see Preparing TMS Software VCL Components for C++Builder Applications.

See Also

Debug Info Agent™
Debug Info Agent™ Specifics
Testing C++Builder Applications
Compiling C++Builder 6 Applications With Debug Information
Compiling C++Builder 2006 Applications With Debug Information
Compiling C++Builder 2009 Applications With Debug Information
Compiling C++Builder 2010 Applications With Debug Information
Compiling C++Builder XE Applications With Debug Information

Highlight search results