Jenkins : TraceTronic ECU-TEST Plugin

Plugin Information

View TraceTronic ECU-TEST on the plugin site for more information.

This plugin integrates Jenkins with ECU-TEST and generates reports on automated test execution.
 

ECU-TEST is a test automation software for the validation of embedded systems in automotive environments developed by TraceTronic GmbH.
This software executes regression tests which are essential for validating complex technical products such as electronic control units (ECUs).
It supports standardized access to a broad range of test tools and provides an extensive automation of distributed test environments (SiL – MiL – HiL – vehicle).

Table of contents

Features

  • Provides an easy integration and control of ECU-TEST and the Tool-Server with Jenkins
  • Enables the execution of ECU-TEST packages and projects with their respective configurations

Moreover publishing test results is included in form of:

  • Linking the TRF reports
  • Generating various report formats
  • Displaying test result trend graphs
  • Uploading ATX test reports to TEST-GUIDE
  • Parsing the ECU-TEST logs for warnings and errors
  • Downstream report generation

Configuration

ECU-TEST configuration

  • ECU-TEST installations are administrated in the Jenkins system configuration or starting with Jenkins 2.0 in the global tool configuration at section "ECU-TEST"
  • An installation entry is specified by an arbitrary name and the path to the installation directory
  • The execution on a Jenkins slave requires the adaption of the ECU-TEST installation directory on the slave configuration page

TEST-GUIDE configuration

  • TEST-GUIDE is also configured in the Jenkins system configuration at section "TEST-GUIDE"
  • A new entry requires both an arbitrary name and the selection of a previously configured ECU-TEST installation
  • Further settings like the server or ATX specific configuration can be found in the advanced block

Job configuration

The plugin provides several new build steps:

Note:

  • All build steps have an "Advanced" button through which more options can be accessed
  • All text fields can be parameterized and are resolved at build execution
    Syntax: $parameter or ${parameter}

The post-build actions are extended by these test report related post-build steps:

Job execution

  • After job configuration is done a new build can be triggerd by clicking on the "Build now" button
  • The console log contains detailed information per build step execution
  • The test results are published both on the build page and the job page based on the latest build

Environment variables

  • This plugin also exposes the tool and test related information of the current build as environment variables
  • These variables are composed of $TT_<TOOL | TEST>_<information>_n where n is the 0-based index of the related build steps in the job configuration
  • The summary of all generated environment variables is also shown on the build page

Tool related variables

Environment variable

Description

TT_TOOL_NAME

Name of the selected ECU-TEST installation

TT_TOOL_INSTALL

Full path to related ECU-TEST executable

TT_TOOL_VERSION

Program version of selected ECU-TEST installation

TT_TOOL_WORKSPACE

ECU-TEST workspace directory

TT_TOOL_SETTINGS

ECU-TEST settings directory

TT_TOOL_DEBUG

ECU-TEST debug mode

TT_TOOL_TIMEOUT

Maximum execution time

TT_TOOL_LAST_TBCLast loaded TBC file path
TT_TOOL_LAST_TCFLast loaded TCF file path
Test related variables

Environment variable

Description

TT_TEST_NAME

Name of the executed test

TT_TEST_FILE

Full path to related test file

TT_TEST_TYPE

Type of related test (PACKAGE, PROJECT)

TT_TEST_DESCRIPTION

Test description

TT_TEST_TBC

Full path to test bench configuration file

TT_TEST_TCF

Full path to test configuration file

TT_TEST_TIMEOUT

Maximum execution time

TT_TEST_RESULT

Test result (SUCCESS, INCONCLUSIVE, FAILED, ERROR, NONE)

TT_TEST_REPORT

Full path to test report directory

Downstream report generation

The concept of downstream report generation allows to execute the report generators like ATX, UNIT, HTML etc. in a downstream-based project.
Therefore the report artifacts like TRF reports etc. must be archived after the test execution stage and will then be copied into a separate workspace of the triggered downstream project.

This downstream project acts like a central reporting service which waits for inputs from other test executions. It will be an ease to scale this service with help of Jenkins parallelization and distribution features.
The big advantage of this approach is to save time for the report generation and uploading process on expensive testing resources like HiL test benches. These resources can be directly used for the next test.



Example configurations

Preconditions

To prevent duplicate reports the build workspace should be cleaned before running the tests and before copying artifacts inside of the downstream project.
This can be achieved by using clean checkouts from repository or using the Workspace Cleanup Plugin when preparing the build environment.

To transfer the report artifacts from one node to another the Copy Artifact Plugin is required for freestyle projects. When using pipelines also stash/unstash commands can be used.

Freestyle configuration

Executing tests and archiving the artifacts (upstream)



Copying artifacts and generating ATX report (downstream)


Pipeline configuration

Upstream pipeline definition
node('windows') {
    deleteDir()
    
    startET 'ECU-TEST'
    testPackage testFile: 'sample.pkg', testConfig: [tbcFile: 'sample.tbc', tcfFile: 'sample.tcf']
    stopET 'ECU-TEST'
    
    archiveArtifacts 'TestReports/**/*.trf'
    build job: 'downstream', wait: false
}
Downstream pipeline definition
node('windows') {
    deleteDir()
    
    copyArtifacts filter: 'TestReports/**/*.trf', projectName: 'upstream', selector: lastSuccessful()
    
    // Class notation is required for publisher steps inside downstream wrapper!
    // Available: ATXPublisher, ETLogPublisher, JUnitPublisher, ReportGeneratorPublisher, TMSPublisher, TRFPublisher
    downstreamPublisher workspace: '', publishers: [
        [$class: 'ATXPublisher', atxName: 'ECU-TEST'],
        [$class: 'JUnitPublisher', toolName: 'ECU-TEST']]
}

Downstream trace analysis

In addition to downstream report generation the plugin allows to run trace analyses in a downstream-based project. Therefore the test cases are executed without trace analysis at first.
Afterwards all trace analysis artifacts like analysis job files, traces, trace step templates and TRF reports etc. must be archived and will then be copied into a separate workspace of the triggered downstream project.

This downstream project acts like a central trace analysis service which waits for inputs from other test executions and is designed to be highly scalable.
The huge advantage of better ressource efficiency is the same as for downstream report generation and can also be used in combination.

Example configurations

Preconditions

Same as in downstream report generation.

Freestyle configuration

Executing test cases without trace analysis and archiving the artifacts (upstream)



Copying artifacts and running the trace analysis (downstream)


Pipeline configuration

Upstream pipeline definition
node('windows') {
    deleteDir()
    
    startET 'ECU-TEST'
    testPackage testFile: 'sample.pkg', testConfig: [tbcFile: 'sample.tbc', tcfFile: 'sample.tcf'], packageConfig: [runTraceAnalysis: false]
    stopET 'ECU-TEST'
    
    archiveArtifacts 'TestReports/**/*.trf, TestReports/**/*.ajob, Packages/**, Traces/**, TraceStepTemplates/**'
    build job: 'downstream', wait: false
}
Downstream pipeline definition
node('windows') {
    deleteDir()
    
    copyArtifacts filter: 'TestReports/**/*.trf, TestReports/**/*.ajob, Packages/**, Traces/**, TraceStepTemplates/**', projectName: 'upstream', selector: lastSuccessful()
    
    // Class notation is required for publisher steps inside downstream wrapper!
    downstreamPublisher workspace: '', publishers: [
        [$class: 'TraceAnalysisPublisher', toolName: 'ECU-TEST', mergeReports: true]]
}

Extensions

Job DSL

The Job DSL Plugin allows the programmatic creation of projects using a DSL. This plugin provides some specific DSL extensions.

Furthermore, if there is a method which is currently not supported then Job DSL also provides an auto-generator.

Controlling tools
steps {
  // Start ECU-TEST
  startET(String installation) {
    workspaceDir(String directory)
    settingsDir(String directory)
    timeout(int | String timeout = 120)
    debugMode(boolean debugMode = false)
    keepInstance(boolean keepInstance = false)
 }
  // Stop ECU-TEST
  stopET(String installation) {
    timeout(int | String timeout = 30)
  }
  // Start Tool-Server
  startTS(String installation) {
    toolLibsIni(String toolLibsPath)
    tcpPort(int | String port = 5017)
    timeout(int | String timeout = 120)
    keepInstance(boolean keepInstance = false)
 }
  // Stop Tool-Server
  stopTS(String installation)
    timeout(int | String timeout = 30)
  }
}
Test execution
steps {
  // Run package
  testPackage(String packageFile) {
    testConfig {
      tbcFile(String tbcFile)
      tcfFile(String tcfFile)
      forceReload(boolean forceReload = false)
      loadOnly(boolean loadOnly = false)
      constants {
        constant(String name, String value)
        constant {
          name(String name)
          value(String value)
        }
      }
    }
    packageConfig {
      runTest(boolean runTest = true)
      runTraceAnalysis(boolean runTraceAnalysis = true)
      parameters {
        parameter(String name, String value)
        parameter {
          name(String name)
          value(String value)
        }
      }
    }
    executionConfig {
      timeout(int | String timeout = 3600)
      checkTestFile(boolean checkTestFile = true)
      stopOnError(boolean stopOnError = true)
    }
  }
  // Run project
  testProject(String projectFile) {
    testConfig { (...) }
    projectConfig {
      execInCurrentPkgDir(boolean currentPkgDir = false)
      filterExpression(String expression)
      // modes: NO_EXECUTION(0), SEQUENTIAL_EXECUTION(1), 
      // PARALLEL_EXECUTION(2), SEPARATE_SEQUENTIAL_EXECUTION(5), 
      // SEPARATE_PARALLEL_EXECUTION(6), NO_TESTCASE_EXECUTION(9)
      jobExecutionMode(int | String execMode = 1)
    }
    executionConfig { (...) }
  }
  // Run test folder
  testFolder(String testFolder) {
    // modes: PACKAGES_ONLY, PROJECTS_ONLY, PACKAGES_AND_PROJECTS
    scanMode(String mode = 'PACKAGES_AND_PROJECTS')
    recursiveScan(boolean recursive = false)
    testConfig { (...) }
    packageConfig { (...) }
    projectConfig { (...) }
    executionConfig { (...) }
  }
} 
Test management
steps {
  // Import projects
  importProjects {
    importFromArchive(String archivePath, String importPath, String importConfigPath, boolean replaceFiles)
    importFromArchive(String archivePath) {
      importPath(String importPath)
      importConfigPath(String importConfigPath)
      replaceFiles(boolean replaceFiles)
    }
    importFromTMS(String credentialsId, String projectPath, String importPath, int | String timeout = 60)
    importFromTMS(String credentialsId, String projectPath) {
      importPath(String importPath)
      timeout(int | String timeout = 60)
    }
    importFromTMSDir(String credentialsId, String projectDirPath, String importPath, int | String timeout = 60)
    importFromTMSDir(String credentialsId, String projectDirPath) {
      importPath(String importPath)
      timeout(int | String timeout = 60)
    }
    importAttributesFromTMS(String credentialsId, String projectPath, int | String timeout = 60)
    importAttributesFromTMS(String credentialsId, String projectPath) {
      timeout(int | String timeout = 60)
    }
  }  
  // Import packages
  importPackages {
    importFromTMS { (...) }
    importFromTMSDir { (...) }
    importAttributesFromTMS { (...) }
  }
  // Export projects
  exportProjects {
    exportToTMS(String credentialsId, String projectPath, String exportPath, boolean createNewPath, int | String timeout = 60)
    exportToTMS(String credentialsId, String projectPath) {
      exportPath(String exportPath)
      createNewPath(boolean createNewPath)
      timeout(int | String timeout = 60)
    }
    exportAttributesToTMS(String credentialsId, String projectPath, int | String timeout = 60)
    exportAttributesToTMS(String credentialsId, String projectPath) {
      timeout(int | String timeout = 60)
    }
  }  
  // Export packages
  exportPackages {
    exportToTMS { (...) }
    exportAttributesToTMS { (...) }
  }
}
Publishing reports
publishers {
  // Publish ATX reports
  publishATX(String atxInstallation) {
    // Archive options
    allowMissing(boolean allowMissing = false)
    runOnFailed(boolean runOnFailed = false)
    archiving(boolean archiving = true)
    keepAll(boolean keepAll = true)
  }
  // Publish TRF reports
  publishTRF() {
    // Archive options...
  }
  // Publish UNIT reports
  publishUNIT(String installation) {
    unstableThreshold(double threshold = 0)
    failedThreshold(double threshold = 0)
    // Archive options...
  }
  // Publish ECU-TEST logs
  publishETLogs() {
    unstableOnWarning(boolean markUnstable = false)
    failedOnError(boolean markFailed = false)
    testSpecific(boolean testSpecific = false)
    // Archive options...
  }
  // Publish Report Generators
  publishGenerators(String installation) {
    generators {
      generator(String generatorName) {
        settings {
          setting(String name, String value)
          setting { 
            name(String name)
            value(String value)
          }
        }
      }
    }
    customGenerators { 
       customGenerator(String generatorName) { (...) }
    }
    // Archive options...
  }
  // Publish to Test Management System
  publishTMS(String installation, String credentialsId) {
    timeout(int | String timeout = 60)
    // Archive options...
  }
}

Pipeline

The Pipeline Plugin allows to orchestrate automation, simple or complex, using a DSL. This plugin supports the use of all provided build steps and post-build actions from within a Jenkins Pipeline build. The appropriate DSL syntax for these steps and actions can be easily generated with help of the Pipeline Snippet Generator using the related custom pipeline step or the 'step' command, when using plugin version prior to 1.13.

Basic pipeline example
node('windows') {
    stage('Start Tools') {
        startET 'ECU-TEST'
    }
    stage('Test Execution') {
        testPackage testFile: 'sample.pkg', testConfig: [tbcFile: 'sample.tbc', tcfFile: 'sample.tcf']
        testProject testFile: 'sample.prj', testConfig: [tbcFile: 'sample.tbc', tcfFile: 'sample.tcf']
    }
    stage('Publish Reports') {
        publishATX 'TEST-GUIDE'
    }
    stage('Stop Tools') {
        stopET 'ECU-TEST'
    }
}
Dynamic ECU-TEST pipeline example
node('windows') {
	// ECU-TEST installation using global variable ET
    def et = ET.newInstallation toolName: 'ECU-TEST', installPath: 'C:\\Program Files\\ECU-TEST 8.0'

	// or getting existing installation from global tool configuration
	def et = ET.installation('ECU-TEST')

	// Start ECU-TEST
	et.start('C:\\Data\\workspace', 'C:\\Data\\settings')

    // Stop ECU-TEST
    et.stop()
}
Dynamic TEST-GUIDE pipeline example
node('windows') {
    // Start tools, execute tests
	...
	
	// TEST-GUIDE server instantiation using global variable ATX
    def atx = ATX.newServer atxName: 'TEST-GUIDE', toolName: 'ECU-TEST', serverUrl: 'http://localhost:8085', uploadToServer: false, authKey: 'xxx', projectId: '1'

	// or getting existing instance from global configuration
	def atx = ATX.server('TEST-GUIDE')

	// Publish ATX reports directly
	atx.publish()
}

Screencasts

For more information about installation and configuration of the plugin as well as using the plugin in a slave-based setup see our screencasts.

Issues

To report a bug or request an enhancement to this plugin please create a ticket in JIRA.

type key summary priority status

Can't show details. Ask your admin to whitelist this Jira URL.

View these issues in Jira

Known limitations

When using the plugin in a slave-based setup (especially running the slave at command line via JNLP) you also need to restart the slave when restarting the master.
This is due to already loaded libraries, for more information see this blog post and related issue JENKINS-31961.

Release 1.8 implemented an extension point that will workaround this issue. In order to work a new task has to be created in the Windows Task Scheduler named RESTART_JENKINS_SLAVE and configured with actions how to restart the slave.

FAQ

When encountering problems or error messages, please check the installed plugin version at first and update to the most recent version, if any.
If the problem still exists search the following list of issues for possible solutions, otherwise you are asked to create a ticket in JIRA.

Common issues

The configured tests are aborted after 60 minutes.
There is a default maximum execution timeout of 3600 seconds that can be changed in the advanced build step section under execution settings. Setting the value to 0 disables the timeout.
The ECU-TEST GUI is not visible or there are problems with external tool connections.

When running the Jenkins slave (or master) as a Windows service that executes ECU-TEST then by default this service runs in scope of the SYSTEM user in a background Windows session.
Therefore all processes started in this session are not visible to the normal user session and there could be problems due to insufficient user rights.
In summary it is NOT recommended to install the slave as a service but to run the slave from command line or to launch via Java Web Start.

In order to be able to use this prefered approach follow these instructions:

  • Open "Global Security Configuration" in Jenkins and set the "TCP port for JNLP agents" either to "random" or to "fixed" unused port number greater than 1024.
  • Create a new slave or configure an existing one and set the launch method to "Launch agent via Java Web Start".
  • Start the slave by either using the "Launch" button or execute the displayed Java command in a command prompt.

Now the ECU-TEST GUI should appear in the same session as the Jenkins slave is running when starting a new build.
Additionally, other problems with external tools connected to ECU-TEST or the Tool-Server should be limited.

Error messages

[TT] ERROR: Caught ComException: Can't co-create object / Can't get object clsid from progid
  1. Re-register the ECU-TEST COM server with the user that runs your Jenkins slave or master.
    Since ECU-TEST 6.6 it is possible to register the COM server for each user separately.
    This is useful if administrative rights are not available.

    • With administrator privileges
      • Open a new command prompt (cmd.exe) with administrator privileges
      • Run following command: “C:\Program Files [(x86)]\ECU-TEST [Version]\ECU-TEST_COM.exe” /register
      • Close command prompt after successful execution
    • Without administrator privileges
      • Open a new command prompt (cmd.exe) without administrator privileges
      • Run following command: “C:\Program Files [(x86)]\ECU-TEST [Version]\ECU-TEST_COM.exe” /register /peruser
      • Close command prompt after successful execution

  2. Check if the port number 8000 is already in use by another running program. This port is needed in ECU-TEST for making internal XML-RPC requests.
    To change the default port please read the instructions in the ECU-TEST manual at section "9.5. Remote control of ECU-TEST".
  3. Check if the COM server was registered properly in the Windows registry (regedit.exe) by searching for these entries: HKEY_CLASSES_ROOT\ECU-TEST.Application and HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ECU-TEST.Application
  4. Try to use the version specific COM programmatic identifier for the configured ECU-TEST installation. This id can be set in the advanced settings of the ECU-TEST installation list.
[TT] ERROR: Caught ComException: Invoke of: Item Source: Description: <Fault 1: 'Exception: method "CurrentTestConfiguration.GlobalConstants.Tell.GetName" is not supported'>
This exception is already fixed in release 2.0, please update at least to this version.
[TT] ERROR: Caught ComException: Invoke of: Abort Source: Description: <Fault 1: 'tt.Error: Fehler bei Abbruch per API! Status ABORTED nach 20.0s nicht erreicht.'>
 This is a known defect in ECU-TEST and occurs when the test execution could not be aborted within a fixed timeout of 20 seconds.
[TT] ERROR: Error while uploading ATX report: 401: report - ErrorCode-1118: Upload nicht möglich, da die Berechtigung fehlt. API-Schlüssel und Benutzerrechte überprüfen.
An upload authentication key is required to upload reports to TEST-GUIDE, which can be set in the TEST-GUIDE upload configuration.
[TT] ERROR: ECU-TEST executable could not be found!
Please check the installation paths for the configured ECU-TEST installation, both on master in the global tool configuration and in the slave configuration.
[TT] ERROR: No running ECU-TEST instance found, please configure one at first!

At first, check the installation paths for the configured ECU-TEST installation in the global tool configuration.

Otherwise there could be a limitation when using a 64-bit ECU-TEST installation running on a machine with 32-bit Java installed only.
To solve this architecture incompatibility install a 64-bit Java Runtime Environment and ensure to run your master or slave on this version.

java.io.IOException: Remote call on xxx failed at hudson.remoting.Channel.call

When using the Swarm Plugin there exists an incompatibility with the plugin dependencies regarding the Apache Commons Lang Library.
Please download the modified Swarm client from here and replace it with the existing swarm-client-jar-with-dependencies.jar.

java.lang.UnsatisfiedLinkError: Native Library jacob-1.18-x64/86.dll already loaded in another classloader

This is known limitation when running the ECU-TEST slave in a user session while the master restarts and reconnects to the slave.

Ensure that the slave agent is always restarted when the master restarts. This can be achieved by creating an appropriate Windows task named RESTART_JENKINS_SLAVE.
Starting with release 2.6 the default Windows task name can be overridden by system property ecutest.taskName on each slave individually.
An example configuration export is attached here and can be easily imported and modified in the Windows Task Scheduler.

Compatibility

  • Jenkins LTS 2.60.3 or higher
  • Java SE Runtime Environment 8 or higher
  • ECU-TEST 7.0.0 or higher
  • optional: TEST-GUIDE 1.55.0 or higher

License

This plugin is licensed under 3-clause BSD license.
More information can be found inside the LICENSE file.

Changelog

Release 2.10 (Jul 03, 2019)

(error) Dynamic TEST-GUIDE installation not found when publishing reports (PR #69)

(warning) Rename pipeline symbols to camel case names (PR #68)

(info) Dependencies updates (PR #63, #66)

Release 2.9 (Jun 14, 2019)

(plus) Add generator option to read from persisted settings file (PR #44)
(plus) Add support for analysis packages (PR #45)

(error) Dynamic ECU-TEST installation not found when stopping instance (PR #43)

(info) Enable Dependabot (PR #49)
(info) Enable Release Drafter (PR #52)

Release 2.8 (May 24, 2019)

(plus) Check whether configurations are started (PR #32)
(plus) Add timeout option using Quit and Exit via COM API (PR #34)
(plus) Add more debug logs (PR #37)

(info) Ensure compatibility up to ECU-TEST 8.0.0 (PR #35)
(info) Drop support for ECU-TEST 6.x (PR #35)
(info) Update available ATX settings to TEST-GUIDE 1.67.0 (PR #36)

Release 2.7 (May 17, 2019)

(plus) Add full support for Configuration as Code plugin (PR #23)
(plus) Allow dynamic inline ECU-TEST instances in pipelines (PR #31)
(plus) Allow dynamic inline TEST-GUIDE instances in pipelines (PR #29)

(tick) Use random generated id for linking reports (PR #24)

Release 2.6 (Feb 15, 2019)

(plus) Add option to update user libraries (PR #12)
(plus) Support generation and re-use of ECU-TEST caches (PR #13)
(plus) Allow individual Windows task name (PR #19)

(tick) Request API endpoint to check TEST-GUIDE availability (PR #15)
(tick) Internal refactoring (PR #7)

(error) Reference filter validation throws ANTLR exception (PR #17)

(info) Updated available ATX settings to TEST-GUIDE 1.64.1
(info) Requires at least TEST-GUIDE 1.55.0

Release 2.5 (Dec 07, 2018)

(plus) Allow dynamic TEST-GUIDE configuration in Pipelines
(plus) Add partial JCasC plugin support to manage ECU-TEST installations

(tick) Use unique ATX id for linking reports to TEST-GUIDE if available
(tick) Improved ECU-TEST version parsing (PR #6)

(info) Ensured compatibility up to ECU-TEST 7.2.0

Release 2.4 (Jul 30, 2018)

(error) Fixed security issues SECURITY-932, SECURITY-994

Release 2.3 (Jul 20, 2018)

(tick) Allow to use TMS credentials from any Jenkins context
(tick) Removed existence check of .workspace directory
(tick) Improved COM connection stability by updating to JACOB 1.19
(tick) More robust parsing the ATX upload response

(info) Updated available ATX settings to TEST-GUIDE 1.57.1

Release 2.2 (Apr 13, 2018)

(tick) Allow additional data types as global constant
(tick) Improved COM connection stability with COM timeouts
(tick) Evaluate ATX upload info for linking ATX reports

(info) Ensured compatibility up to ECU-TEST 7.1.0
(info) Updated available ATX settings to TEST-GUIDE 1.54.0

Release 2.1 (Feb 16, 2018)

(plus) Added publisher for downstream trace analysis

(tick) Disabled COM timeout by default

(error) Fixed ATX report links when using downstream publisher

(info) Bumped Jenkins baseline to LTS 2.60.3

Release 2.0 (Dec 08, 2017)

(plus) Added publisher for downstream report generation
(plus) Added build variables containing last loaded ECU-TEST configurations
(plus) Added COM timeout to detect non-responding ECU-TEST instance or tool connections

(error) Fixed sporadic errors when setting global constants

(info) Bumped Jenkins baseline to LTS 2.60.1
(info) Requires Java 8 on master and slaves
(info) Ensured compatibility up to ECU-TEST 7.0.0
(info) Updated available ATX settings to TEST-GUIDE 1.49.0


Releases 1.x

Release 1.18 (Jul 28, 2017)

(plus) Added option to re-use ECU-TEST and Tool-Server instances

(tick) Ignore ECU-TEST patch version in compatibility checks
(tick) Check architecture compatibility between ECU-TEST and JVM

(error) Ignore test configuration validation if previous ones re-used

(info) Updated available ATX settings to TEST-GUIDE 1.46.0

Release 1.17.1 (Jun 06, 2017)

(error) Fixed duplicate test project action

Release 1.17 (Jun 02, 2017)

(plus) Added option to keep currently loaded configurations
(plus) Added option to import missing packages for project imports
(plus) Added build step to import and export packages/projects from/to test management system
(plus) Added build step to import and export package/project attributes from/to test management system
(plus) Added appropriate Job DSL and Pipeline plugin support for for test management build steps

(tick) Keep test results in case of manual build abort or exceeded timeout
(tick) Debug log used COM ProgId and version (use system property ecutest.debugLog=<true|false>)
(tick) Retain backward compatibility for legacy test management builders

(info) Ensured compatibility up to ECU-TEST 6.6.0
(info) Updated available ATX settings to TEST-GUIDE 1.44.0

Release 1.16 (Mar 10, 2017)

(plus) Improved summary view for tool and test related build variables
(plus) Added support for multiple TEST-GUIDE projects

(tick) Append to existing JUnit results to prevent duplicated trend graphs
(tick) Exclude job analysis files when traversing sub reports
(tick) Compatibility changes for TEST-GUIDE 1.39+

(info) Updated available ATX settings to TEST-GUIDE 1.41.0

Release 1.15 (Jan 06, 2017)

(plus) Added build step to import projects from an archive or a test management system (like RQM, ALM)
(plus) Added post-build step allowing to export test results to a test management system
(plus) Added appropriate Job DSL and Pipeline plugin support for new features above

(tick) Depend on Icon Shim Plugin to simplify icon usage (JENKINS-36472)

(error) Fixed ATX report links for long-running uploads

Release 1.14 (Nov 25, 2016)

(tick) Remove empty installations when saving configurations
(tick) Avoid circular dependency warning on Jenkins startup (JENKINS-39169)

(error) Fixed TRF include/exclude pattern for report publishers
(error) Fixed ATX report links for sub project execution

(info) Updated available ATX settings to TEST-GUIDE 1.38.0

Release 1.13 (Oct 14, 2016)

(plus) Added @Symbol annotation to simplify pipeline syntax

(error) Exclude job analysis reports from publishing

Release 1.12 (Sep 16, 2016)

(plus) Added support for new TRF naming convention (like package/project name)
(plus) Added support for changed installation path of Tool-Server
(plus) Added support for parallel installations (configurable COM ProgID)

(tick) Properly log ATX report upload errors
(tick) Simplified configuration with automatic migration
(tick) Improved Windows process control (using WinP)

(error) Fixed absolute configuration path check

(info) Ensured compatibility up to ECU-TEST 6.5.0
(info) Updated available ATX settings to TEST-GUIDE 1.35.0

Release 1.11 (May 27, 2016)

(plus) Added support for Pipeline plugin (fka Workflow) (JENKINS-31999)

(info) Bumped Jenkins baseline to LTS 1.580.1

Release 1.10 (May 13, 2016)

(plus) Added option to publish and parse test specific log files

(tick) Allow use of parameterized tool selection in Job DSL extensions

(info) Bumped to new parent POM 2.9
(info) Updated available ATX settings to TEST-GUIDE 1.30.0

Release 1.9 (Apr 15, 2016)

(plus) Added publishing option to disable archiving reports
(plus) Added option to keep artifacts of most recent build only (project level)

(info) Ensured compatibility up to ECU-TEST 6.4.0
(info) Updated available ATX settings to TEST-GUIDE 1.29.0

Release 1.8 (Mar 18, 2016)

(plus) Added workaround for already loaded JACOB library (JENKINS-31961)
(plus) Added report publisher allowing to execute report generators

(error) Fixed test execution handling when aborting the build (JENKINS-33457)

Release 1.7 (Mar 04, 2016)

(plus) Added parameterized ECU-TEST and TEST-GUIDE selection
(plus) Allow use of parameterized ATX settings

(tick) Improved test execution timeout handling

(info) Ensured compatibility up to ECU-TEST 6.3.2
(info) Updated available ATX settings to TEST-GUIDE 1.27.0

Release 1.6 (Jan 29, 2016)

(plus) Added option to only load the configurations without starting them automatically

(tick) Check for existing global constants, prevents to unnecessarily reload the configurations

Release 1.5 (Dec 18, 2015)

(plus) Added option to explicitly set the ECU-TEST settings directory

(tick) Allow use of GStrings in Job DSL extensions
(tick) Discard empty global constants and package parameters

(error) Fixed undetected ATX upload errors (JENKINS-32078)

Release 1.4 (Dec 04, 2015)

(plus) Added support to pre-check packages and projects
(plus) Added option to force reloading the current configuration

(tick) Highlighted the test result in the console log

(error) Fixed ATX report links for multiple archived ATX files (JENKINS-31770)

Release 1.3 (Nov 23, 2015)

(plus) Added post-execution timeouts

(tick) Improved Job DSL extensions by providing default settings

(error) Fixed form validation for some ATX settings (JENKINS-31703)

Release 1.2 (Nov 06, 2015)

(plus) Added support for Job DSL plugin
(plus) Added ZIP download link for published TRF and ATX reports

(tick) Aggregated UNIT test results for matrix projects

Release 1.1 (Oct 23, 2015)

(plus) Added support for separate sub-project execution
(plus) Added archiving of ATX reports for disabled ATX upload

(tick) Improved publisher behavior handling ECU-TEST instances
(tick) Improved ECU-TEST log parser performance
(tick) Improved validation of TEST-GUIDE server availability

Release 1.0 (Oct 09, 2015)

(info) Initial release

Attachments: