Skip to content

Commit

Permalink
Increase compatibility up to ECU-TEST 2023.1
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinGroscheTT authored Apr 5, 2023
1 parent 1ff1f41 commit 1d0a828
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -904,6 +904,7 @@ can be found in the [TraceTronic Knowledge Base](https://kb.tracetronic.com/disp

| Version | latest - 2.26 | 2.25 - 2.23 | 2.22 - 2.19 | 2.18 - 2.15 | 2.15 | 2.14 - 2.13 | 2.12 - 2.8 | 2.7 - 2.5 | 2.4 - 2.2 | 2.1 - 2.0 |
|:-------:|:-----------------:|:-----------------:|:-----------------:|:-----------------:|:-----------------:|:-----------------:|:-----------------:|:-----------------:|:-----------------:|:-----------------:|
| 2023.1 | :heavy_check_mark:| :x: | :x: | :x: | :x: | :x: | :x: | :x: | :x: | :x: |
| 2022.4 | :heavy_check_mark:| :x: | :x: | :x: | :x: | :x: | :x: | :x: | :x: | :x: |
| 2022.3 | :heavy_check_mark:| :x: | :x: | :x: | :x: | :x: | :x: | :x: | :x: | :x: |
| 2022.2 | :heavy_check_mark:| :x: | :x: | :x: | :x: | :x: | :x: | :x: | :x: | :x: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class ETPlugin {
/**
* Defines the maximum allowed ECU-TEST version supported by this plugin.
*/
public static final ToolVersion ET_MAX_VERSION = new ToolVersion(2022, 4, 0);
public static final ToolVersion ET_MAX_VERSION = new ToolVersion(2023, 1, 1);

/**
* Defines the minimum TEST-GUIDE version supported by this plugin.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,6 @@ public boolean checkLicense(final Launcher launcher, final TaskListener listener
final TTConsoleLogger logger = new TTConsoleLogger(listener);
logger.logInfo(args.toString());

// Launch tool process with arg -p
final int exitCode = launcher.launch().cmds(args).quiet(true).join();
return exitCode == 0;
}
Expand Down Expand Up @@ -296,7 +295,7 @@ protected ArgumentListBuilder createCmdLine() {

if (isLicenseCheck()) {
args.add("--startupAutomated=True");
args.add("-p");
args.add("-q");
} else {
if (!getWorkspaceDir().isEmpty()) {
args.add("--workspaceDir", getWorkspaceDir());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public void testDebugCmdLineArgs() {
public void testLicenseCmdLineArgs() {
final ETClient etClient = new ETClient("ECU-TEST", exe, "", "", 0, false);
etClient.setLicenseCheck(true);
expectedArgs = Arrays.asList(exe, "--startupAutomated=True", "-p");
expectedArgs = Arrays.asList(exe, "--startupAutomated=True", "-q");
ensureCreateCmdLineArgs(etClient, expectedArgs);
}

Expand Down

0 comments on commit 1d0a828

Please sign in to comment.