Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

RCPTT/Debugging

Tracing background activities

RCPTT supports enhanced tracing for background activities.

Create 'debug.options' file with following content:

   org.eclipse.rcptt.tesla.swt/debug/jobCollector=true
   org.eclipse.rcptt.tesla.swt/debug/proceed=true

RCPTT IDE

Add `-debug path_to_dir/debug.options` to the AUT arguments for tracing in the RCPTT IDE:

RCPTT IDE TRACING.jpg

Check Output File and input the file path on the Common tab for output log in file.

RCPTT COMMON TAB.jpg

Maven Plugin

Add 'path_to_dir/debug.options' to AUT arguments in pom file for tracing in the RCPTT Maven Plugin:

   <aut>
       ...
       <args>
           ...
           <arg>-debug</arg>
           <arg>path_to_dir/debug.options</arg>
       </args>
       ...
   </aut>

Runner

Add 'path_to_dir/debug.options' to AUT arguments in pom file for tracing in the Runner

   java -autArgs '-debug;$path_to_dir/debug.options' ...


Tracing can be found in the 'aut-console-*_console.log' file.

Back to the top