Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [linuxtools-dev] test failures?

I suspect you are missing the -XstartOnFirstThread JVM arg if those test failures are using a UI harness.
I believe I had fixed those for tmf and lttng plugins but not the others. You can find an example in CDT on how to pass -XstartOnFirstThread (I just tested there and it still works)


Sorry the whole base.ui.test.vmargs property is a bit convoluted but it’s just to not copy paste things around and make it less error prone. Also make sure that tycho.testArgLine is still being passed or you will break jacoco!

Cheers,
Marc-André


On May 10, 2020, at 5:57 PM, Homer, Tony <tony.homer@xxxxxxxxx> wrote:

Sorry, I hit send before I finished the email.
Corrections below.
 
TL;DR I am still troubleshooting this on Mac, but might go back to Linux to troubleshoot 
 
From: "Homer, Tony" <tony.homer@xxxxxxxxx>
Date: Sunday, May 10, 2020 at 2:54 PM
To: "linuxtools-dev@xxxxxxxxxxx" <linuxtools-dev@xxxxxxxxxxx>
Subject: Re: test failures?
 
I read the surefire and tycho FAQs.
The tycho FAQ suggested turning on eclipse and maven errors so I tried that:
mvn clean install -debug -X  | tee out.txt
 
After that I notice some stack traces like
java.lang.ClassNotFoundException: org.eclipse.swt.SWTError cannot be found by org.eclipse.ui.workbench_3.119.0.v20200507-1644
 
The class is present on the file system:
$ unzip -l org.eclipse.swt.cocoa.macosx.x86_64_3.114.0.v20200304-0601.jar | grep Error
     1488  03-04-2020 01:24   org/eclipse/swt/SWTError.class
 
I wonder if this is an eclipse problem, a problem with the project configuration or a problem with my environment?
 
There are also a lot of MojoFailureExceptions with “Command-line used to launch the sub-process was null”, like:
Caused by: org.apache.maven.plugin.MojoFailureException: An unexpected error occurred while launching the test runtime (process returned error code 13). Command-line used to launch the sub-process was null -Dosgi.noShutdown=false -Dosgi.os=macosx -Dosgi.ws=cocoa -Dosgi.arch=x86_64 -javaagent:/Users/ajhomer/.m2/repository/org/jacoco/org.jacoco.agent/0.8.5/org.jacoco.agent-0.8.5-runtime.jar=destfile=/Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/containers/org.eclipse.linuxtools.docker.editor.ls.tests/../../target/jacoco.exec,append=true,includes=org.eclipse.linuxtools.* -Dosgi.clean=true -jar /Users/ajhomer/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.launcher/1.5.700.v20200207-2156/org.eclipse.equinox.launcher-1.5.700.v20200207-2156.jar -debug -consolelog -data /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/containers/org.eclipse.linuxtools.docker.editor.ls.tests/target/work/data -install /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/containers/org.eclipse.linuxtools.docker.editor.ls.tests/target/work -configuration /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/containers/org.eclipse.linuxtools.docker.editor.ls.tests/target/work/configuration -application org.eclipse.tycho.surefire.osgibooter.uitest -testproperties /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/containers/org.eclipse.linuxtools.docker.editor.ls.tests/target/surefire.properties -product org.eclipse.platform.ide in working directory /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/containers/org.eclipse.linuxtools.docker.editor.ls.tests
    at org.eclipse.tycho.surefire.TestMojo.runTest (TestMojo.java:1093)
    at org.eclipse.tycho.surefire.TestMojo.execute (TestMojo.java:712)
    at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:210)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:156)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:148)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
    at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
    at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
    at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:305)
    at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
    at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
    at org.apache.maven.cli.MavenCli.execute (MavenCli.java:957)
    at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:289)
    at org.apache.maven.cli.MavenCli.main (MavenCli.java:193)
    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke (Method.java:498)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:225)
    at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:406)
    at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:347)
 
On Linux, surefire-reports folders had contents, but on Mac they are empty. 
 
From: "Homer, Tony" <tony.homer@xxxxxxxxx>
Date: Sunday, May 10, 2020 at 2:11 PM
To: "linuxtools-dev@xxxxxxxxxxx" <linuxtools-dev@xxxxxxxxxxx>
Subject: Re: test failures?
 
I updated to Maven 3.6.3 after Jonah’s suggestion.
I tried Java 8 and Java 11 in case that makes a difference.
I didn’t do a careful comparison, but it seems I get the same errors in every case on both Linux and Mac.
I’ll take a more careful look at the error messages and see if I can figure out the root cause.
I’ll also take another look at the Jenkins log for recent builds, but the one I had looked at appeared to have a lot of skips.
 
Please let me know if its expected that all of the tests pass in the current HEAD of master.
 
Thanks!
Tony
 
From: "Homer, Tony" <tony.homer@xxxxxxxxx>
Date: Sunday, May 10, 2020 at 12:35 PM
To: "linuxtools-dev@xxxxxxxxxxx" <linuxtools-dev@xxxxxxxxxxx>
Subject: test failures?
 
I’ve been working on linuxtools on my remote linux box, but I decided to switch to my local mac in order to eliminate vpn latency.
When building on linux I noticed some test errors but ignored the non-docker ones because I was focused on getting a clean docker build.
I’ve been having trouble getting one of the docker.ui.tests to pass, so after switching to my mac, I decided to build master and verify that all the tests pass.
 
I checked out linuxtools master, cleared my local maven repo (rm ~/.m2/repository) and built (mvn -fae install package) and I’m getting test failures.
 
I noticed that on Hudson, https://ci.eclipse.org/linuxtools/job/linuxtools-master/132/, the tests are disabled:
mvn clean install -Pbuild-server -Dmaven.test.failure.ignore=true
 
The “build locally” instructions just say to have a recent Maven 3 (I have 3.6.2).
I’ll troubleshoot this myself but I’m sharing in case you guys have an idea about why I’m seeing these errors.
Should I expect there to be test failures?
 
Thanks!
Tony Homer
 
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO
[INFO] Eclipse Linux Tools Parent 7.7.0-SNAPSHOT .......... SUCCESS [ 22.705 s]
[INFO] Linux Tools Profiling Framework Parent 7.7.0-SNAPSHOT SUCCESS [  0.023 s]
[INFO] Linux Tools Profiling Launch Plug-in 3.3.0-SNAPSHOT  SUCCESS [  9.718 s]
[INFO] Linux Tools Tools Launcher Core Plug-in 3.3.0-SNAPSHOT SUCCESS [  0.670 s]
[INFO] Linux Tools Profiling Tests Plug-in 1.1.0-SNAPSHOT . SUCCESS [  0.712 s]
[INFO] Linux Tools Remote Proxy Tests Plug-in 1.0.0-SNAPSHOT FAILURE [  6.070 s]
[INFO] Linux Tools Tools launch core tests plug-in 1.0.0-SNAPSHOT SKIPPED
[INFO] Linux Tools Tools Launcher UI Plug-in 2.0.0-SNAPSHOT SUCCESS [  1.140 s]
[INFO] Linux Tools Binutils Plug-in 6.0.0-SNAPSHOT ........ SUCCESS [  1.182 s]
[INFO] Linux Tools Data Viewers Plug-in 6.1.0-SNAPSHOT .... SUCCESS [  1.732 s]
[INFO] Linux Tools PieChart plug-in 2.0.1-SNAPSHOT ........ SUCCESS [  0.612 s]
[INFO] Linux Tools Data Viewers Charts Plug-in 6.1.0-SNAPSHOT SUCCESS [  1.235 s]
[INFO] Linux Tools Dataviewers Feature 7.7.0-SNAPSHOT ..... SUCCESS [  0.713 s]
[INFO] Linux Tools Profiling Framework Documentation Plug-in 1.0.0-SNAPSHOT SUCCESS [  0.307 s]
[INFO] Linux Tools Profiling UI Plug-in 3.2.0-SNAPSHOT .... SUCCESS [  0.928 s]
[INFO] Linux Tools Profiling Capability Plug-in 1.0.0-SNAPSHOT SUCCESS [  0.351 s]
[INFO] Linux Tools Profiling Framework Feature 7.7.0-SNAPSHOT SUCCESS [  0.535 s]
[INFO] Linux Tools Resource Selector Proxy for RDT 2.0.0-SNAPSHOT SUCCESS [  0.739 s]
[INFO] Linux Tools Profiling Provider Tests Plug-in 1.2.0-SNAPSHOT FAILURE [  6.141 s]
[INFO] Linux Tools RDT Proxy Plug-in 2.0.0-SNAPSHOT ....... SUCCESS [  0.616 s]
[INFO] Linux Tools SSH Proxy Plug-in 1.2.0-SNAPSHOT ....... SUCCESS [  1.136 s]
[INFO] Linux Tools Profiling Remote Capabilities Feature 7.7.0-SNAPSHOT SUCCESS [  0.516 s]
[INFO] Linux Tools org.eclipse.remote proxy tests plug-in 1.0.0-SNAPSHOT SKIPPED
[INFO] Linux Tools ChangeLog Parent 7.7.0-SNAPSHOT ........ SUCCESS [  0.072 s]
[INFO] Linux Tools ChangeLog Core Plug-in 3.0.0-SNAPSHOT .. SUCCESS [  1.567 s]
[INFO] Linux Tools ChangeLog C/C++ Parser Plug-in 2.7.0-SNAPSHOT SUCCESS [  0.878 s]
[INFO] Linux Tools ChangeLog Documentation Plug-in 2.7.1-SNAPSHOT SUCCESS [  0.278 s]
[INFO] Linux Tools ChangeLog Java Parser Plug-in 2.7.0-SNAPSHOT SUCCESS [  0.757 s]
[INFO] Linux Tools ChangeLog Feature 7.7.0-SNAPSHOT ....... SUCCESS [  0.463 s]
[INFO] Linux Tools ChangeLog Feature for C/C++ 7.7.0-SNAPSHOT SUCCESS [  0.469 s]
[INFO] Linux Tools ChangeLog Feature for Java 7.7.0-SNAPSHOT SUCCESS [  0.414 s]
[INFO] Linux Tools ChangeLog Core Tests Plug-in 2.7.0-SNAPSHOT FAILURE [  6.059 s]
[INFO] Linux Tools ChangeLog UI Tests Plug-in 2.7.0-SNAPSHOT FAILURE [  5.716 s]
[INFO] Linux Tools GCov Parent 7.7.0-SNAPSHOT ............. SUCCESS [  0.011 s]
[INFO] Linux Tools GCov Plug-in 6.2.0-SNAPSHOT ............ SUCCESS [  1.756 s]
[INFO] Linux Tools GCov Documentation Plug-in 1.0.0-SNAPSHOT SUCCESS [  0.305 s]
[INFO] Linux Tools GCov Launch Plug-in 1.2.0-SNAPSHOT ..... SUCCESS [  0.892 s]
[INFO] Linux Tools GCov Feature 7.7.0-SNAPSHOT ............ SUCCESS [  0.582 s]
[INFO] Linux Tools GCov Test Plug-in 4.1.1-SNAPSHOT ....... FAILURE [ 20.158 s]
[INFO] Linux Tools GProf Parent 7.7.0-SNAPSHOT ............ SUCCESS [  0.016 s]
[INFO] Linux Tools GProf Plug-in 5.1.0-SNAPSHOT ........... SUCCESS [  1.143 s]
[INFO] Linux Tools Gprof Documentation Plug-in 1.0.0-SNAPSHOT SUCCESS [  0.377 s]
[INFO] Linux Tools GProf Launch Plug-in 1.2.0-SNAPSHOT .... SUCCESS [  0.937 s]
[INFO] Linux Tools GProf Integration Feature 7.7.0-SNAPSHOT SUCCESS [  0.488 s]
[INFO] Linux Tools GProf Tests Plug-in 5.1.0-SNAPSHOT ..... FAILURE [  5.816 s]
[INFO] Linux Tools Libhover Parent 7.7.0-SNAPSHOT ......... SUCCESS [  0.014 s]
[INFO] Linux Tools Libhover Plug-in 1.2.0-SNAPSHOT ........ SUCCESS [  0.981 s]
[INFO] Linux Tools Libhover Library Documentation Plug-in 1.0.2-SNAPSHOT SUCCESS [  0.284 s]
[INFO] Linux Tools glibc Libhover Core Plug-in 1.2.1-SNAPSHOT SUCCESS [  0.295 s]
[INFO] Linux Tools Libhover Feature 7.7.0-SNAPSHOT ........ SUCCESS [  0.313 s]
[INFO] Linux Tools libstdc++ Libhover Plug-in 1.0.0-SNAPSHOT SUCCESS [  0.590 s]
[INFO] Linux Tools Newlib Libhover Plug-in 1.0.3-SNAPSHOT . SUCCESS [  0.300 s]
[INFO] Linux Tools Libhover Newlib Feature 7.7.0-SNAPSHOT . SUCCESS [  0.372 s]
[INFO] Linux Tools Devhelp Libhover Plug-in 1.1.0-SNAPSHOT  SUCCESS [  1.004 s]
[INFO] Linux Tools Devhelp Core Tests Plug-in 1.0.1-SNAPSHOT FAILURE [  5.664 s]
[INFO] Linux Tools Devhelp Libhover Feature 7.7.0-SNAPSHOT  SUCCESS [  0.167 s]
[INFO] Linux Tools Libhover Core Tests Plug-in 1.0.0-SNAPSHOT FAILURE [  5.209 s]
[INFO] Linux Tools Javadocs Parent 7.7.0-SNAPSHOT ......... SUCCESS [  0.011 s]
[INFO] Javadocs Plug-in 1.0.0-SNAPSHOT .................... SUCCESS [  0.705 s]
[INFO] Linux Tools Javadocs Feature 7.7.0-SNAPSHOT ........ SUCCESS [  0.362 s]
[INFO] Javadocs Plug-in Tests 1.0.0-SNAPSHOT .............. FAILURE [  5.213 s]
[INFO] Linux Tools Man Parent 7.7.0-SNAPSHOT .............. SUCCESS [  0.011 s]
[INFO] Linux Tools Man Plug-in 1.5.0-SNAPSHOT ............. SUCCESS [  0.718 s]
[INFO] Linux Tools Man Help Center Integration Plug-in 1.1.0-SNAPSHOT SUCCESS [  0.896 s]
[INFO] Linux Tools Man Feature (Incubation) 7.7.0-SNAPSHOT  SUCCESS [  0.381 s]
[INFO] Linux Tools Perf Parent 7.7.0-SNAPSHOT ............. SUCCESS [  0.055 s]
[INFO] Linux Tools Perf Plug-in 1.3.0-SNAPSHOT ............ SUCCESS [  1.166 s]
[INFO] Linux Tools Perf Documentation Plug-in 1.0.0-SNAPSHOT SUCCESS [  0.406 s]
[INFO] Linux Tools Perf Integration Feature 7.7.0-SNAPSHOT  SUCCESS [  0.442 s]
[INFO] Linux Tools Remote Perf Integration Feature 7.7.0-SNAPSHOT SUCCESS [  0.391 s]
[INFO] Linux Tools Perf Tests Plug-in 1.0.0-SNAPSHOT ...... FAILURE [  6.004 s]
[INFO] Linux Tools RPM Parent 7.7.0-SNAPSHOT .............. SUCCESS [  0.015 s]
[INFO] Linux Tools RPM Core Plug-in 3.1.0-SNAPSHOT ........ SUCCESS [  0.681 s]
[INFO] Linux Tools RPM Core Tests Plug-in 1.0.0-SNAPSHOT .. FAILURE [  6.098 s]
[INFO] Linux Tools RPM Specfile Editor Plug-in 4.0.0-SNAPSHOT SUCCESS [  2.221 s]
[INFO] Linux Tools RPM Createrepo Plug-in 1.0.0-SNAPSHOT .. SUCCESS [  1.755 s]
[INFO] Linux Tools RPM UI Plug-in 1.1.0-SNAPSHOT .......... SUCCESS [  1.280 s]
[INFO] Linux Tools RPM Rpmlint Core Plug-in 1.1.0-SNAPSHOT  SUCCESS [  1.025 s]
[INFO] Linux Tools RPM Specfile Editor Documentation Plug-in 1.0.0-SNAPSHOT SUCCESS [  0.483 s]
[INFO] Linux Tools RPM Stubby Plug-in 1.2.0-SNAPSHOT ...... SUCCESS [  1.119 s]
[INFO] Linux Tools RPM Tools Feature 7.7.0-SNAPSHOT ....... SUCCESS [  0.521 s]
[INFO] Linux Tools RPM Specfile Editor Tests Plug-in 1.0.0-SNAPSHOT FAILURE [  6.127 s]
[INFO] Linux Tools RPM Createrepo Tests Plug-in 1.0.0-SNAPSHOT FAILURE [  5.575 s]
[INFO] Linux Tools SystemTap Parent 7.7.0-SNAPSHOT ........ SUCCESS [  0.011 s]
[INFO] Linux Tools Callgraph Core Plug-in 3.1.0-SNAPSHOT .. SUCCESS [  0.721 s]
[INFO] Linux Tools Callgraph Graphing Plug-in 2.0.0-SNAPSHOT SUCCESS [  1.264 s]
[INFO] Linux Tools Callgraph Documentation Plug-in 1.0.0-SNAPSHOT SUCCESS [  0.255 s]
[INFO] Linux Tools Callgraph Launch Plug-in 2.1.0-SNAPSHOT  SUCCESS [  0.895 s]
[INFO] Linux Tools C/C++ Call Graph Visualization Feature 7.7.0-SNAPSHOT SUCCESS [  0.649 s]
[INFO] Linux Tools Callgraph Launch Tests Plug-in 1.0.0-SNAPSHOT FAILURE [  5.661 s]
[INFO] Linux Tools Callgraph Graphing Tests Plug-in 1.0.0-SNAPSHOT FAILURE [  5.113 s]
[INFO] Linux Tools Structures Plug-in 4.2.0-SNAPSHOT ...... SUCCESS [  0.811 s]
[INFO] Linux Tools SystemTap Graphing Core 2.1.0-SNAPSHOT . SUCCESS [  1.239 s]
[INFO] Linux Tools SystemTap Graphing UI Plug-In 4.2.0-SNAPSHOT SUCCESS [  1.519 s]
[INFO] Linux Tools SystemTap ConsoleLog Plug-in 4.0.0-SNAPSHOT SUCCESS [  0.992 s]
[INFO] Linux Tools SystemTap GUI Documentation Plug-in 2.6.5-SNAPSHOT SUCCESS [  0.379 s]
[INFO] Linux Tools SystemTap IDE Plug-in 2.3.1-SNAPSHOT ... SUCCESS [  3.067 s]
[INFO] Linux Tools SystemTap IDE and Visualization Tools Feature 7.7.0-SNAPSHOT SUCCESS [  0.581 s]
[INFO] Linux Tools SystemTap ConsoleLog Tests Plug-in 1.0.0-SNAPSHOT FAILURE [  5.704 s]
[INFO] Linux Tools SystemTap Graphing Tests Plug-in 1.0.0-SNAPSHOT FAILURE [  6.273 s]
[INFO] Linux Tools SystemTap IDE Tests Plug-in 1.0.0-SNAPSHOT FAILURE [  5.638 s]
[INFO] Linux Tools SystemTap Structures Tests Plug-in 1.0.0-SNAPSHOT FAILURE [  5.174 s]
[INFO] Linux Tools Valgrind Parent 7.7.0-SNAPSHOT ......... SUCCESS [  0.012 s]
[INFO] Linux Tools Valgrind Core Plug-in 1.1.0-SNAPSHOT ... SUCCESS [  0.435 s]
[INFO] Linux Tools Valgrind UI Plug-in 2.1.0-SNAPSHOT ..... SUCCESS [  1.059 s]
[INFO] Linux Tools Valgrind Launch Plug-in 3.0.0-SNAPSHOT . SUCCESS [  0.902 s]
[INFO] Linux Tools Cachegrind Plug-in 1.1.0-SNAPSHOT ...... SUCCESS [  0.867 s]
[INFO] Linux Tools Valgrind Tests Plug-in 1.0.0-SNAPSHOT .. SUCCESS [  0.740 s]
[INFO] Linux Tools Cachegrind Tests Plug-in 1.0.0-SNAPSHOT  FAILURE [  5.872 s]
[INFO] Linux Tools Valgrind Documentation Plug-in 1.0.0-SNAPSHOT SUCCESS [  0.135 s]
[INFO] Linux Tools Valgrind Helgrind Plug-in 1.1.0-SNAPSHOT SUCCESS [  0.612 s]
[INFO] Linux Tools Helgrind Tests Plug-in 1.0.0-SNAPSHOT .. FAILURE [  5.398 s]
[INFO] Linux Tools Valgrind Massif Plug-in 1.1.0-SNAPSHOT . SUCCESS [  0.803 s]
[INFO] Linux Tools Massif Tests Plug-in 1.0.0-SNAPSHOT .... FAILURE [  6.310 s]
[INFO] Linux Tools Valgrind Memcheck Plug-in 1.1.0-SNAPSHOT SUCCESS [  0.409 s]
[INFO] Linux Tools Valgrind Editor Plug-in 1.0.0-SNAPSHOT . SUCCESS [  0.933 s]
[INFO] Linux Tools Valgrind Tools Integration Feature 7.7.0-SNAPSHOT SUCCESS [  0.385 s]
[INFO] Linux Tools Valgrind Tools Remote Integration Feature 7.7.0-SNAPSHOT SUCCESS [  0.431 s]
[INFO] Linux Tools Valgrind UI Tests Plug-in 1.0.0-SNAPSHOT FAILURE [  5.528 s]
[INFO] org.eclipse.linuxtools.docker 4.7.0-SNAPSHOT ....... SUCCESS [  0.010 s]
[INFO] org.eclipse.linuxtools.docker.tests.hamcrest-wrap 1.2.0-SNAPSHOT SUCCESS [ 11.625 s]
[INFO] Linux Tools Valgrind Core Tests Plug-in 1.0.0-SNAPSHOT SUCCESS [  6.347 s]
[INFO] org.eclipse.linuxtools.docker.core 4.7.0-SNAPSHOT .. SUCCESS [  2.575 s]
[INFO] org.eclipse.linuxtools.docker.ui 4.7.0-SNAPSHOT .... SUCCESS [  5.665 s]
[INFO] org.eclipse.linuxtools.docker.ui.tests 2.2.0-SNAPSHOT FAILURE [07:56 min]
[INFO] Linux Tools Docker Tooling Documentation Plug-in 4.7.0-SNAPSHOT SUCCESS [  0.155 s]
[INFO] org.eclipse.linuxtools.docker.editor.ls 1.0.0-SNAPSHOT SUCCESS [ 11.934 s]
[INFO] Linux Tools Docker Tooling Editor Feature 4.7.0-SNAPSHOT SUCCESS [  0.429 s]
[INFO] Linux Tools Docker Tooling Feature 4.7.0-SNAPSHOT .. SUCCESS [  0.382 s]
[INFO] org.eclipse.linuxtools.docker.reddeer 2.2.0-SNAPSHOT SKIPPED
[INFO] org.eclipse.linuxtools.docker.integration.tests 2.2.0-SNAPSHOT SKIPPED
[INFO] Linux Tools Docker Tooling Test Feature 4.7.0-SNAPSHOT SKIPPED
[INFO] org.eclipse.linuxtools.docker.editor.ls.tests 1.0.0-SNAPSHOT FAILURE [  7.829 s]
[INFO] org.eclipse.linuxtools.jdt.docker.launcher 1.0.0-SNAPSHOT SUCCESS [  0.746 s]
[INFO] Linux Tools JDT Docker Launch Feature 4.7.0-SNAPSHOT SUCCESS [  0.404 s]
[INFO] org.eclipse.linuxtools.vagrant 4.7.0-SNAPSHOT ...... SUCCESS [  0.053 s]
[INFO] org.eclipse.linuxtools.vagrant.core 2.0.0-SNAPSHOT . SUCCESS [  0.836 s]
[INFO] org.eclipse.linuxtools.vagrant.ui 2.0.0-SNAPSHOT ... SUCCESS [  1.253 s]
[INFO] Linux Tools Vagrant Tooling Documentation Plug-in 2.0.0-SNAPSHOT SUCCESS [  0.327 s]
[INFO] Linux Tools Vagrant Tooling Feature 4.7.0-SNAPSHOT . SUCCESS [  0.368 s]
[INFO] Linux Tools Releng Parent 7.7.0-SNAPSHOT ........... SUCCESS [  0.103 s]
[INFO] Linux Tools p2 Repository 7.7.0-SNAPSHOT ........... SUCCESS [  7.652 s]
[INFO] Linux Tools Docker p2 Repository 7.7.0-SNAPSHOT .... SKIPPED
[INFO] Linux Tools Target Platform 1.0.0 .................. SUCCESS [  2.907 s]
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  17:56 min
[INFO] Finished at: 2020-05-10T11:36:49-07:00
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.eclipse.tycho:tycho-surefire-plugin:1.7.0:test (default-test) on project org.eclipse.linuxtools.remote.proxy.tests: An unexpected error occurred while launching the test runtime (process returned error code 13). Command-line used to launch the sub-process was null -Dosgi.noShutdown=false -Dosgi.os=macosx -Dosgi.ws=cocoa -Dosgi.arch=x86_64 -javaagent:/Users/ajhomer/.m2/repository/org/jacoco/org.jacoco.agent/0.8.5/org.jacoco.agent-0.8.5-runtime.jar=destfile=/Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/profiling/org.eclipse.linuxtools.remote.proxy.tests/../../target/jacoco.exec,append=true,includes=org.eclipse.linuxtools.* -Dosgi.clean=true -jar /Users/ajhomer/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.launcher/1.5.700.v20200207-2156/org.eclipse.equinox.launcher-1.5.700.v20200207-2156.jar -data /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/profiling/org.eclipse.linuxtools.remote.proxy.tests/target/work/data -install /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/profiling/org.eclipse.linuxtools.remote.proxy.tests/target/work -configuration /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/profiling/org.eclipse.linuxtools.remote.proxy.tests/target/work/configuration -application org.eclipse.tycho.surefire.osgibooter.uitest -testproperties /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/profiling/org.eclipse.linuxtools.remote.proxy.tests/target/surefire.properties -product org.eclipse.platform.ide in working directory /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/profiling/org.eclipse.linuxtools.remote.proxy.tests -> [Help 1]
[ERROR] Failed to execute goal org.eclipse.tycho:tycho-surefire-plugin:1.7.0:test (default-test) on project org.eclipse.linuxtools.profiling.provider.tests: An unexpected error occurred while launching the test runtime (process returned error code 13). Command-line used to launch the sub-process was null -Dosgi.noShutdown=false -Dosgi.os=macosx -Dosgi.ws=cocoa -Dosgi.arch=x86_64 -javaagent:/Users/ajhomer/.m2/repository/org/jacoco/org.jacoco.agent/0.8.5/org.jacoco.agent-0.8.5-runtime.jar=destfile=/Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/profiling/org.eclipse.linuxtools.profiling.provider.tests/../../target/jacoco.exec,append=true,includes=org.eclipse.linuxtools.* -Dosgi.clean=true -jar /Users/ajhomer/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.launcher/1.5.700.v20200207-2156/org.eclipse.equinox.launcher-1.5.700.v20200207-2156.jar -data /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/profiling/org.eclipse.linuxtools.profiling.provider.tests/target/work/data -install /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/profiling/org.eclipse.linuxtools.profiling.provider.tests/target/work -configuration /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/profiling/org.eclipse.linuxtools.profiling.provider.tests/target/work/configuration -application org.eclipse.tycho.surefire.osgibooter.uitest -testproperties /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/profiling/org.eclipse.linuxtools.profiling.provider.tests/target/surefire.properties -product org.eclipse.platform.ide -nouithread in working directory /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/profiling/org.eclipse.linuxtools.profiling.provider.tests -> [Help 1]
[ERROR] Failed to execute goal org.eclipse.tycho:tycho-surefire-plugin:1.7.0:test (default-test) on project org.eclipse.linuxtools.changelog.tests:An unexpected error occurred while launching the test runtime (process returned error code 13). Command-line used to launch the sub-process was null -Dosgi.noShutdown=false -Dosgi.os=macosx -Dosgi.ws=cocoa -Dosgi.arch=x86_64 -javaagent:/Users/ajhomer/.m2/repository/org/jacoco/org.jacoco.agent/0.8.5/org.jacoco.agent-0.8.5-runtime.jar=destfile=/Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/changelog/org.eclipse.linuxtools.changelog.tests/../../target/jacoco.exec,append=true,includes=org.eclipse.linuxtools.* -Dosgi.clean=true -jar /Users/ajhomer/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.launcher/1.5.700.v20200207-2156/org.eclipse.equinox.launcher-1.5.700.v20200207-2156.jar -data /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/changelog/org.eclipse.linuxtools.changelog.tests/target/work/data -install /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/changelog/org.eclipse.linuxtools.changelog.tests/target/work -configuration /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/changelog/org.eclipse.linuxtools.changelog.tests/target/work/configuration -application org.eclipse.tycho.surefire.osgibooter.uitest -testproperties /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/changelog/org.eclipse.linuxtools.changelog.tests/target/surefire.properties -product org.eclipse.platform.ide in working directory /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/changelog/org.eclipse.linuxtools.changelog.tests -> [Help 1]
[ERROR] Failed to execute goal org.eclipse.tycho:tycho-surefire-plugin:1.7.0:test (default-test) on project org.eclipse.linuxtools.changelog.ui.tests: An unexpected error occurred while launching the test runtime (process returned error code 13). Command-line used to launch the sub-process was null -Dosgi.noShutdown=false -Dosgi.os=macosx -Dosgi.ws=cocoa -Dosgi.arch=x86_64 -javaagent:/Users/ajhomer/.m2/repository/org/jacoco/org.jacoco.agent/0.8.5/org.jacoco.agent-0.8.5-runtime.jar=destfile=/Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/changelog/org.eclipse.linuxtools.changelog.ui.tests/../../target/jacoco.exec,append=true,includes=org.eclipse.linuxtools.* -Dosgi.clean=true -jar /Users/ajhomer/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.launcher/1.5.700.v20200207-2156/org.eclipse.equinox.launcher-1.5.700.v20200207-2156.jar -data /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/changelog/org.eclipse.linuxtools.changelog.ui.tests/target/work/data -install /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/changelog/org.eclipse.linuxtools.changelog.ui.tests/target/work -configuration /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/changelog/org.eclipse.linuxtools.changelog.ui.tests/target/work/configuration -application org.eclipse.tycho.surefire.osgibooter.uitest -testproperties /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/changelog/org.eclipse.linuxtools.changelog.ui.tests/target/surefire.properties -product org.eclipse.platform.ide -nouithread in working directory /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/changelog/org.eclipse.linuxtools.changelog.ui.tests -> [Help 1]
[ERROR] Failed to execute goal org.eclipse.tycho:tycho-surefire-plugin:1.7.0:test (default-test) on project org.eclipse.linuxtools.gcov.test: An unexpected error occurred while launching the test runtime (process returned error code 13). Command-line used to launch the sub-process was null -Dosgi.noShutdown=false -Dosgi.os=macosx -Dosgi.ws=cocoa -Dosgi.arch=x86_64 -javaagent:/Users/ajhomer/.m2/repository/org/jacoco/org.jacoco.agent/0.8.5/org.jacoco.agent-0.8.5-runtime.jar=destfile=/Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/gcov/org.eclipse.linuxtools.gcov.test/../../target/jacoco.exec,append=true,includes=org.eclipse.linuxtools.* -Dosgi.clean=true -jar /Users/ajhomer/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.launcher/1.5.700.v20200207-2156/org.eclipse.equinox.launcher-1.5.700.v20200207-2156.jar -data /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/gcov/org.eclipse.linuxtools.gcov.test/target/work/data -install /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/gcov/org.eclipse.linuxtools.gcov.test/target/work -configuration /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/gcov/org.eclipse.linuxtools.gcov.test/target/work/configuration -application org.eclipse.tycho.surefire.osgibooter.uitest -testproperties /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/gcov/org.eclipse.linuxtools.gcov.test/target/surefire.properties -product org.eclipse.platform.ide -nouithread in working directory /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/gcov/org.eclipse.linuxtools.gcov.test -> [Help 1]
[ERROR] Failed to execute goal org.eclipse.tycho:tycho-surefire-plugin:1.7.0:test (default-test) on project org.eclipse.linuxtools.gprof.test: An unexpected error occurred while launching the test runtime (process returned error code 13). Command-line used to launch the sub-process was null -Dosgi.noShutdown=false -Dosgi.os=macosx -Dosgi.ws=cocoa -Dosgi.arch=x86_64 -javaagent:/Users/ajhomer/.m2/repository/org/jacoco/org.jacoco.agent/0.8.5/org.jacoco.agent-0.8.5-runtime.jar=destfile=/Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/gprof/org.eclipse.linuxtools.gprof.test/../../target/jacoco.exec,append=true,includes=org.eclipse.linuxtools.* -Dosgi.clean=true -jar /Users/ajhomer/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.launcher/1.5.700.v20200207-2156/org.eclipse.equinox.launcher-1.5.700.v20200207-2156.jar -data /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/gprof/org.eclipse.linuxtools.gprof.test/target/work/data -install /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/gprof/org.eclipse.linuxtools.gprof.test/target/work -configuration /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/gprof/org.eclipse.linuxtools.gprof.test/target/work/configuration -application org.eclipse.tycho.surefire.osgibooter.uitest -testproperties /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/gprof/org.eclipse.linuxtools.gprof.test/target/surefire.properties -product org.eclipse.platform.ide in working directory /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/gprof/org.eclipse.linuxtools.gprof.test -> [Help 1]
[ERROR] Failed to execute goal org.eclipse.tycho:tycho-surefire-plugin:1.7.0:test (default-test) on project org.eclipse.linuxtools.cdt.libhover.devhelp.tests: An unexpected error occurred while launching the test runtime (process returned error code 13). Command-line used to launch the sub-process was null -Dosgi.noShutdown=false -Dosgi.os=macosx -Dosgi.ws=cocoa -Dosgi.arch=x86_64 -javaagent:/Users/ajhomer/.m2/repository/org/jacoco/org.jacoco.agent/0.8.5/org.jacoco.agent-0.8.5-runtime.jar=destfile=/Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/libhover/org.eclipse.linuxtools.cdt.libhover.devhelp.tests/../../target/jacoco.exec,append=true,includes=org.eclipse.linuxtools.* -Dosgi.clean=true -jar /Users/ajhomer/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.launcher/1.5.700.v20200207-2156/org.eclipse.equinox.launcher-1.5.700.v20200207-2156.jar -data /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/libhover/org.eclipse.linuxtools.cdt.libhover.devhelp.tests/target/work/data -install /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/libhover/org.eclipse.linuxtools.cdt.libhover.devhelp.tests/target/work -configuration /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/libhover/org.eclipse.linuxtools.cdt.libhover.devhelp.tests/target/work/configuration -application org.eclipse.tycho.surefire.osgibooter.uitest -testproperties /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/libhover/org.eclipse.linuxtools.cdt.libhover.devhelp.tests/target/surefire.properties -product org.eclipse.platform.ide in working directory /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/libhover/org.eclipse.linuxtools.cdt.libhover.devhelp.tests -> [Help 1]
[ERROR] Failed to execute goal org.eclipse.tycho:tycho-surefire-plugin:1.7.0:test (default-test) on project org.eclipse.linuxtools.cdt.libhover.tests: An unexpected error occurred while launching the test runtime (process returned error code 13). Command-line used to launch the sub-process was null -Dosgi.noShutdown=false -Dosgi.os=macosx -Dosgi.ws=cocoa -Dosgi.arch=x86_64 -javaagent:/Users/ajhomer/.m2/repository/org/jacoco/org.jacoco.agent/0.8.5/org.jacoco.agent-0.8.5-runtime.jar=destfile=/Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/libhover/org.eclipse.linuxtools.cdt.libhover.tests/../../target/jacoco.exec,append=true,includes=org.eclipse.linuxtools.* -Dosgi.clean=true -jar /Users/ajhomer/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.launcher/1.5.700.v20200207-2156/org.eclipse.equinox.launcher-1.5.700.v20200207-2156.jar -data /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/libhover/org.eclipse.linuxtools.cdt.libhover.tests/target/work/data -install /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/libhover/org.eclipse.linuxtools.cdt.libhover.tests/target/work -configuration /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/libhover/org.eclipse.linuxtools.cdt.libhover.tests/target/work/configuration -application org.eclipse.tycho.surefire.osgibooter.uitest -testproperties /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/libhover/org.eclipse.linuxtools.cdt.libhover.tests/target/surefire.properties -product org.eclipse.platform.ide in working directory /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/libhover/org.eclipse.linuxtools.cdt.libhover.tests -> [Help 1]
[ERROR] Failed to execute goal org.eclipse.tycho:tycho-surefire-plugin:1.7.0:test (default-test) on project org.eclipse.linuxtools.javadocs.tests:An unexpected error occurred while launching the test runtime (process returned error code 13). Command-line used to launch the sub-process was null -Dosgi.noShutdown=false -Dosgi.os=macosx -Dosgi.ws=cocoa -Dosgi.arch=x86_64 -javaagent:/Users/ajhomer/.m2/repository/org/jacoco/org.jacoco.agent/0.8.5/org.jacoco.agent-0.8.5-runtime.jar=destfile=/Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/javadocs/org.eclipse.linuxtools.javadocs.tests/../../target/jacoco.exec,append=true,includes=org.eclipse.linuxtools.* -Dosgi.clean=true -jar /Users/ajhomer/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.launcher/1.5.700.v20200207-2156/org.eclipse.equinox.launcher-1.5.700.v20200207-2156.jar -data /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/javadocs/org.eclipse.linuxtools.javadocs.tests/target/work/data -install /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/javadocs/org.eclipse.linuxtools.javadocs.tests/target/work -configuration /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/javadocs/org.eclipse.linuxtools.javadocs.tests/target/work/configuration -application org.eclipse.tycho.surefire.osgibooter.uitest -testproperties /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/javadocs/org.eclipse.linuxtools.javadocs.tests/target/surefire.properties -product org.eclipse.platform.ide in working directory /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/javadocs/org.eclipse.linuxtools.javadocs.tests -> [Help 1]
[ERROR] Failed to execute goal org.eclipse.tycho:tycho-surefire-plugin:1.7.0:test (default-test) on project org.eclipse.linuxtools.perf.tests: An unexpected error occurred while launching the test runtime (process returned error code 13). Command-line used to launch the sub-process was null -Dosgi.noShutdown=false -Dosgi.os=macosx -Dosgi.ws=cocoa -Dosgi.arch=x86_64 -javaagent:/Users/ajhomer/.m2/repository/org/jacoco/org.jacoco.agent/0.8.5/org.jacoco.agent-0.8.5-runtime.jar=destfile=/Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/perf/org.eclipse.linuxtools.perf.tests/../../target/jacoco.exec,append=true,includes=org.eclipse.linuxtools.* -Dosgi.clean=true -jar /Users/ajhomer/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.launcher/1.5.700.v20200207-2156/org.eclipse.equinox.launcher-1.5.700.v20200207-2156.jar -data /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/perf/org.eclipse.linuxtools.perf.tests/target/work/data -install /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/perf/org.eclipse.linuxtools.perf.tests/target/work -configuration /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/perf/org.eclipse.linuxtools.perf.tests/target/work/configuration -application org.eclipse.tycho.surefire.osgibooter.uitest -testproperties /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/perf/org.eclipse.linuxtools.perf.tests/target/surefire.properties -product org.eclipse.platform.ide in working directory /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/perf/org.eclipse.linuxtools.perf.tests -> [Help 1]
[ERROR] Failed to execute goal org.eclipse.tycho:tycho-surefire-plugin:1.7.0:test (default-test) on project org.eclipse.linuxtools.rpm.core.tests:An unexpected error occurred while launching the test runtime (process returned error code 13). Command-line used to launch the sub-process was null -Dosgi.noShutdown=false -Dosgi.os=macosx -Dosgi.ws=cocoa -Dosgi.arch=x86_64 -javaagent:/Users/ajhomer/.m2/repository/org/jacoco/org.jacoco.agent/0.8.5/org.jacoco.agent-0.8.5-runtime.jar=destfile=/Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/rpm/org.eclipse.linuxtools.rpm.core.tests/../../target/jacoco.exec,append=true,includes=org.eclipse.linuxtools.* -Dosgi.clean=true -jar /Users/ajhomer/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.launcher/1.5.700.v20200207-2156/org.eclipse.equinox.launcher-1.5.700.v20200207-2156.jar -data /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/rpm/org.eclipse.linuxtools.rpm.core.tests/target/work/data -install /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/rpm/org.eclipse.linuxtools.rpm.core.tests/target/work -configuration /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/rpm/org.eclipse.linuxtools.rpm.core.tests/target/work/configuration -application org.eclipse.tycho.surefire.osgibooter.uitest -testproperties /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/rpm/org.eclipse.linuxtools.rpm.core.tests/target/surefire.properties -product org.eclipse.platform.ide in working directory /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/rpm/org.eclipse.linuxtools.rpm.core.tests -> [Help 1]
[ERROR] Failed to execute goal org.eclipse.tycho:tycho-surefire-plugin:1.7.0:test (default-test) on project org.eclipse.linuxtools.rpm.ui.editor.tests: An unexpected error occurred while launching the test runtime (process returned error code 13). Command-line used to launch the sub-process was null -Dosgi.noShutdown=false -Dosgi.os=macosx -Dosgi.ws=cocoa -Dosgi.arch=x86_64 -javaagent:/Users/ajhomer/.m2/repository/org/jacoco/org.jacoco.agent/0.8.5/org.jacoco.agent-0.8.5-runtime.jar=destfile=/Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/rpm/org.eclipse.linuxtools.rpm.ui.editor.tests/../../target/jacoco.exec,append=true,includes=org.eclipse.linuxtools.* -Dosgi.clean=true -jar /Users/ajhomer/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.launcher/1.5.700.v20200207-2156/org.eclipse.equinox.launcher-1.5.700.v20200207-2156.jar -data /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/rpm/org.eclipse.linuxtools.rpm.ui.editor.tests/target/work/data -install /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/rpm/org.eclipse.linuxtools.rpm.ui.editor.tests/target/work -configuration /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/rpm/org.eclipse.linuxtools.rpm.ui.editor.tests/target/work/configuration -application org.eclipse.tycho.surefire.osgibooter.uitest -testproperties /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/rpm/org.eclipse.linuxtools.rpm.ui.editor.tests/target/surefire.properties -product org.eclipse.platform.ide in working directory /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/rpm/org.eclipse.linuxtools.rpm.ui.editor.tests -> [Help 1]
[ERROR] Failed to execute goal org.eclipse.tycho:tycho-surefire-plugin:1.7.0:test (default-test) on project org.eclipse.linuxtools.rpm.createrepo.tests: An unexpected error occurred while launching the test runtime (process returned error code 13). Command-line used to launch the sub-process was null -Dosgi.noShutdown=false -Dosgi.os=macosx -Dosgi.ws=cocoa -Dosgi.arch=x86_64 -javaagent:/Users/ajhomer/.m2/repository/org/jacoco/org.jacoco.agent/0.8.5/org.jacoco.agent-0.8.5-runtime.jar=destfile=/Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/rpm/org.eclipse.linuxtools.rpm.createrepo.tests/../../target/jacoco.exec,append=true,includes=org.eclipse.linuxtools.* -Dosgi.clean=true -jar /Users/ajhomer/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.launcher/1.5.700.v20200207-2156/org.eclipse.equinox.launcher-1.5.700.v20200207-2156.jar -data /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/rpm/org.eclipse.linuxtools.rpm.createrepo.tests/target/work/data -install /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/rpm/org.eclipse.linuxtools.rpm.createrepo.tests/target/work -configuration /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/rpm/org.eclipse.linuxtools.rpm.createrepo.tests/target/work/configuration -application org.eclipse.tycho.surefire.osgibooter.uitest -testproperties /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/rpm/org.eclipse.linuxtools.rpm.createrepo.tests/target/surefire.properties -product org.eclipse.platform.ide -nouithread in working directory /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/rpm/org.eclipse.linuxtools.rpm.createrepo.tests -> [Help 1]
[ERROR] Failed to execute goal org.eclipse.tycho:tycho-surefire-plugin:1.7.0:test (default-test) on project org.eclipse.linuxtools.callgraph.launch.tests: An unexpected error occurred while launching the test runtime (process returned error code 13). Command-line used to launch the sub-process was null -Dosgi.noShutdown=false -Dosgi.os=macosx -Dosgi.ws=cocoa -Dosgi.arch=x86_64 -javaagent:/Users/ajhomer/.m2/repository/org/jacoco/org.jacoco.agent/0.8.5/org.jacoco.agent-0.8.5-runtime.jar=destfile=/Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/../../target/jacoco.exec,append=true,includes=org.eclipse.linuxtools.* -Dosgi.clean=true -jar /Users/ajhomer/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.launcher/1.5.700.v20200207-2156/org.eclipse.equinox.launcher-1.5.700.v20200207-2156.jar -data /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/target/work/data -install /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/target/work -configuration /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/target/work/configuration -application org.eclipse.tycho.surefire.osgibooter.uitest -testproperties /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/systemtap/org.eclipse.linuxtools.callgraph.launch.tests/target/surefire.properties -product org.eclipse.platform.ide in working directory /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/systemtap/org.eclipse.linuxtools.callgraph.launch.tests -> [Help 1]
[ERROR] Failed to execute goal org.eclipse.tycho:tycho-surefire-plugin:1.7.0:test (default-test) on project org.eclipse.linuxtools.callgraph.tests:An unexpected error occurred while launching the test runtime (process returned error code 13). Command-line used to launch the sub-process was null -Dosgi.noShutdown=false -Dosgi.os=macosx -Dosgi.ws=cocoa -Dosgi.arch=x86_64 -javaagent:/Users/ajhomer/.m2/repository/org/jacoco/org.jacoco.agent/0.8.5/org.jacoco.agent-0.8.5-runtime.jar=destfile=/Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/systemtap/org.eclipse.linuxtools.callgraph.tests/../../target/jacoco.exec,append=true,includes=org.eclipse.linuxtools.* -Dosgi.clean=true -jar /Users/ajhomer/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.launcher/1.5.700.v20200207-2156/org.eclipse.equinox.launcher-1.5.700.v20200207-2156.jar -data /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/systemtap/org.eclipse.linuxtools.callgraph.tests/target/work/data -install /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/systemtap/org.eclipse.linuxtools.callgraph.tests/target/work -configuration /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/systemtap/org.eclipse.linuxtools.callgraph.tests/target/work/configuration -application org.eclipse.tycho.surefire.osgibooter.uitest -testproperties /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/systemtap/org.eclipse.linuxtools.callgraph.tests/target/surefire.properties -product org.eclipse.platform.ide in working directory /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/systemtap/org.eclipse.linuxtools.callgraph.tests -> [Help 1]
[ERROR] Failed to execute goal org.eclipse.tycho:tycho-surefire-plugin:1.7.0:test (default-test) on project org.eclipse.linuxtools.systemtap.ui.consolelog.tests: An unexpected error occurred while launching the test runtime (process returned error code 13). Command-line used to launch the sub-process was null -Dosgi.noShutdown=false -Dosgi.os=macosx -Dosgi.ws=cocoa -Dosgi.arch=x86_64 -javaagent:/Users/ajhomer/.m2/repository/org/jacoco/org.jacoco.agent/0.8.5/org.jacoco.agent-0.8.5-runtime.jar=destfile=/Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/systemtap/org.eclipse.linuxtools.systemtap.ui.consolelog.tests/../../target/jacoco.exec,append=true,includes=org.eclipse.linuxtools.* -Dosgi.clean=true -jar /Users/ajhomer/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.launcher/1.5.700.v20200207-2156/org.eclipse.equinox.launcher-1.5.700.v20200207-2156.jar -data /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/systemtap/org.eclipse.linuxtools.systemtap.ui.consolelog.tests/target/work/data -install /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/systemtap/org.eclipse.linuxtools.systemtap.ui.consolelog.tests/target/work -configuration /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/systemtap/org.eclipse.linuxtools.systemtap.ui.consolelog.tests/target/work/configuration -application org.eclipse.tycho.surefire.osgibooter.uitest -testproperties /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/systemtap/org.eclipse.linuxtools.systemtap.ui.consolelog.tests/target/surefire.properties -product org.eclipse.platform.ide in working directory /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/systemtap/org.eclipse.linuxtools.systemtap.ui.consolelog.tests -> [Help 1]
[ERROR] Failed to execute goal org.eclipse.tycho:tycho-surefire-plugin:1.7.0:test (default-test) on project org.eclipse.linuxtools.systemtap.graphing.core.tests: An unexpected error occurred while launching the test runtime (process returned error code 13). Command-line used to launch the sub-process was null -Dosgi.noShutdown=false -Dosgi.os=macosx -Dosgi.ws=cocoa -Dosgi.arch=x86_64 -javaagent:/Users/ajhomer/.m2/repository/org/jacoco/org.jacoco.agent/0.8.5/org.jacoco.agent-0.8.5-runtime.jar=destfile=/Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/systemtap/org.eclipse.linuxtools.systemtap.graphing.core.tests/../../target/jacoco.exec,append=true,includes=org.eclipse.linuxtools.* -Dosgi.clean=true -jar /Users/ajhomer/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.launcher/1.5.700.v20200207-2156/org.eclipse.equinox.launcher-1.5.700.v20200207-2156.jar -data /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/systemtap/org.eclipse.linuxtools.systemtap.graphing.core.tests/target/work/data -install /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/systemtap/org.eclipse.linuxtools.systemtap.graphing.core.tests/target/work -configuration /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/systemtap/org.eclipse.linuxtools.systemtap.graphing.core.tests/target/work/configuration -application org.eclipse.tycho.surefire.osgibooter.uitest -testproperties /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/systemtap/org.eclipse.linuxtools.systemtap.graphing.core.tests/target/surefire.properties -product org.eclipse.platform.ide in working directory /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/systemtap/org.eclipse.linuxtools.systemtap.graphing.core.tests -> [Help 1]
[ERROR] Failed to execute goal org.eclipse.tycho:tycho-surefire-plugin:1.7.0:test (default-test) on project org.eclipse.linuxtools.systemtap.ui.ide.tests: An unexpected error occurred while launching the test runtime (process returned error code 13). Command-line used to launch the sub-process was null -Dosgi.noShutdown=false -Dosgi.os=macosx -Dosgi.ws=cocoa -Dosgi.arch=x86_64 -javaagent:/Users/ajhomer/.m2/repository/org/jacoco/org.jacoco.agent/0.8.5/org.jacoco.agent-0.8.5-runtime.jar=destfile=/Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/systemtap/org.eclipse.linuxtools.systemtap.ui.ide.tests/../../target/jacoco.exec,append=true,includes=org.eclipse.linuxtools.* -Dosgi.clean=true -jar /Users/ajhomer/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.launcher/1.5.700.v20200207-2156/org.eclipse.equinox.launcher-1.5.700.v20200207-2156.jar -data /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/systemtap/org.eclipse.linuxtools.systemtap.ui.ide.tests/target/work/data -install /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/systemtap/org.eclipse.linuxtools.systemtap.ui.ide.tests/target/work -configuration /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/systemtap/org.eclipse.linuxtools.systemtap.ui.ide.tests/target/work/configuration -application org.eclipse.tycho.surefire.osgibooter.uitest -testproperties /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/systemtap/org.eclipse.linuxtools.systemtap.ui.ide.tests/target/surefire.properties -product org.eclipse.platform.ide -nouithread in working directory /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/systemtap/org.eclipse.linuxtools.systemtap.ui.ide.tests -> [Help 1]
[ERROR] Failed to execute goal org.eclipse.tycho:tycho-surefire-plugin:1.7.0:test (default-test) on project org.eclipse.linuxtools.systemtap.structures.tests: An unexpected error occurred while launching the test runtime (process returned error code 13). Command-line used to launch the sub-process was null -Dosgi.noShutdown=false -Dosgi.os=macosx -Dosgi.ws=cocoa -Dosgi.arch=x86_64 -javaagent:/Users/ajhomer/.m2/repository/org/jacoco/org.jacoco.agent/0.8.5/org.jacoco.agent-0.8.5-runtime.jar=destfile=/Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/systemtap/org.eclipse.linuxtools.systemtap.structures.tests/../../target/jacoco.exec,append=true,includes=org.eclipse.linuxtools.* -Dosgi.clean=true -jar /Users/ajhomer/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.launcher/1.5.700.v20200207-2156/org.eclipse.equinox.launcher-1.5.700.v20200207-2156.jar -data /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/systemtap/org.eclipse.linuxtools.systemtap.structures.tests/target/work/data -install /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/systemtap/org.eclipse.linuxtools.systemtap.structures.tests/target/work -configuration /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/systemtap/org.eclipse.linuxtools.systemtap.structures.tests/target/work/configuration -application org.eclipse.tycho.surefire.osgibooter.uitest -testproperties /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/systemtap/org.eclipse.linuxtools.systemtap.structures.tests/target/surefire.properties -product org.eclipse.platform.ide in working directory /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/systemtap/org.eclipse.linuxtools.systemtap.structures.tests -> [Help 1]
[ERROR] Failed to execute goal org.eclipse.tycho:tycho-surefire-plugin:1.7.0:test (default-test) on project org.eclipse.linuxtools.valgrind.cachegrind.tests: An unexpected error occurred while launching the test runtime (process returned error code 13). Command-line used to launch the sub-process was null -Dosgi.noShutdown=false -Dosgi.os=macosx -Dosgi.ws=cocoa -Dosgi.arch=x86_64 -javaagent:/Users/ajhomer/.m2/repository/org/jacoco/org.jacoco.agent/0.8.5/org.jacoco.agent-0.8.5-runtime.jar=destfile=/Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/valgrind/org.eclipse.linuxtools.valgrind.cachegrind.tests/../../target/jacoco.exec,append=true,includes=org.eclipse.linuxtools.* -Dosgi.clean=true -jar /Users/ajhomer/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.launcher/1.5.700.v20200207-2156/org.eclipse.equinox.launcher-1.5.700.v20200207-2156.jar -data /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/valgrind/org.eclipse.linuxtools.valgrind.cachegrind.tests/target/work/data -install /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/valgrind/org.eclipse.linuxtools.valgrind.cachegrind.tests/target/work -configuration /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/valgrind/org.eclipse.linuxtools.valgrind.cachegrind.tests/target/work/configuration -application org.eclipse.tycho.surefire.osgibooter.uitest -testproperties /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/valgrind/org.eclipse.linuxtools.valgrind.cachegrind.tests/target/surefire.properties -product org.eclipse.platform.ide in working directory /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/valgrind/org.eclipse.linuxtools.valgrind.cachegrind.tests -> [Help 1]
[ERROR] Failed to execute goal org.eclipse.tycho:tycho-surefire-plugin:1.7.0:test (default-test) on project org.eclipse.linuxtools.valgrind.helgrind.tests: An unexpected error occurred while launching the test runtime (process returned error code 13). Command-line used to launch the sub-process was null -Dosgi.noShutdown=false -Dosgi.os=macosx -Dosgi.ws=cocoa -Dosgi.arch=x86_64 -javaagent:/Users/ajhomer/.m2/repository/org/jacoco/org.jacoco.agent/0.8.5/org.jacoco.agent-0.8.5-runtime.jar=destfile=/Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/valgrind/org.eclipse.linuxtools.valgrind.helgrind.tests/../../target/jacoco.exec,append=true,includes=org.eclipse.linuxtools.* -Dosgi.clean=true -jar /Users/ajhomer/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.launcher/1.5.700.v20200207-2156/org.eclipse.equinox.launcher-1.5.700.v20200207-2156.jar -data /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/valgrind/org.eclipse.linuxtools.valgrind.helgrind.tests/target/work/data -install /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/valgrind/org.eclipse.linuxtools.valgrind.helgrind.tests/target/work -configuration /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/valgrind/org.eclipse.linuxtools.valgrind.helgrind.tests/target/work/configuration -application org.eclipse.tycho.surefire.osgibooter.uitest -testproperties /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/valgrind/org.eclipse.linuxtools.valgrind.helgrind.tests/target/surefire.properties -product org.eclipse.platform.ide in working directory /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/valgrind/org.eclipse.linuxtools.valgrind.helgrind.tests -> [Help 1]
[ERROR] Failed to execute goal org.eclipse.tycho:tycho-surefire-plugin:1.7.0:test (default-test) on project org.eclipse.linuxtools.valgrind.massif.tests: An unexpected error occurred while launching the test runtime (process returned error code 13). Command-line used to launch the sub-process was null -Dosgi.noShutdown=false -Dosgi.os=macosx -Dosgi.ws=cocoa -Dosgi.arch=x86_64 -javaagent:/Users/ajhomer/.m2/repository/org/jacoco/org.jacoco.agent/0.8.5/org.jacoco.agent-0.8.5-runtime.jar=destfile=/Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/valgrind/org.eclipse.linuxtools.valgrind.massif.tests/../../target/jacoco.exec,append=true,includes=org.eclipse.linuxtools.* -Dosgi.clean=true -jar /Users/ajhomer/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.launcher/1.5.700.v20200207-2156/org.eclipse.equinox.launcher-1.5.700.v20200207-2156.jar -data /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/valgrind/org.eclipse.linuxtools.valgrind.massif.tests/target/work/data -install /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/valgrind/org.eclipse.linuxtools.valgrind.massif.tests/target/work -configuration /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/valgrind/org.eclipse.linuxtools.valgrind.massif.tests/target/work/configuration -application org.eclipse.tycho.surefire.osgibooter.uitest -testproperties /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/valgrind/org.eclipse.linuxtools.valgrind.massif.tests/target/surefire.properties -product org.eclipse.platform.ide in working directory /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/valgrind/org.eclipse.linuxtools.valgrind.massif.tests -> [Help 1]
[ERROR] Failed to execute goal org.eclipse.tycho:tycho-surefire-plugin:1.7.0:test (default-test) on project org.eclipse.linuxtools.valgrind.ui.tests: An unexpected error occurred while launching the test runtime (process returned error code 13). Command-line used to launch the sub-process was null -Dosgi.noShutdown=false -Dosgi.os=macosx -Dosgi.ws=cocoa -Dosgi.arch=x86_64 -javaagent:/Users/ajhomer/.m2/repository/org/jacoco/org.jacoco.agent/0.8.5/org.jacoco.agent-0.8.5-runtime.jar=destfile=/Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/valgrind/org.eclipse.linuxtools.valgrind.ui.tests/../../target/jacoco.exec,append=true,includes=org.eclipse.linuxtools.* -Dosgi.clean=true -jar /Users/ajhomer/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.launcher/1.5.700.v20200207-2156/org.eclipse.equinox.launcher-1.5.700.v20200207-2156.jar -data /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/valgrind/org.eclipse.linuxtools.valgrind.ui.tests/target/work/data -install /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/valgrind/org.eclipse.linuxtools.valgrind.ui.tests/target/work -configuration /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/valgrind/org.eclipse.linuxtools.valgrind.ui.tests/target/work/configuration -application org.eclipse.tycho.surefire.osgibooter.uitest -testproperties /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/valgrind/org.eclipse.linuxtools.valgrind.ui.tests/target/surefire.properties -product org.eclipse.product.ide in working directory /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/valgrind/org.eclipse.linuxtools.valgrind.ui.tests -> [Help 1]
[ERROR] Failed to execute goal org.eclipse.tycho:tycho-surefire-plugin:1.7.0:test (default-test) on project org.eclipse.linuxtools.docker.ui.tests:There are test failures.
[ERROR
[ERROR] Please refer to /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/containers/org.eclipse.linuxtools.docker.ui.tests/target/surefire-reports for the individual test results.
[ERROR] -> [Help 1]
[ERROR] Failed to execute goal org.eclipse.tycho:tycho-surefire-plugin:1.7.0:test (default-test) on project org.eclipse.linuxtools.docker.editor.ls.tests: An unexpected error occurred while launching the test runtime (process returned error code 13). Command-line used to launch the sub-process was null -Dosgi.noShutdown=false -Dosgi.os=macosx -Dosgi.ws=cocoa -Dosgi.arch=x86_64 -javaagent:/Users/ajhomer/.m2/repository/org/jacoco/org.jacoco.agent/0.8.5/org.jacoco.agent-0.8.5-runtime.jar=destfile=/Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/containers/org.eclipse.linuxtools.docker.editor.ls.tests/../../target/jacoco.exec,append=true,includes=org.eclipse.linuxtools.* -Dosgi.clean=true -jar /Users/ajhomer/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.launcher/1.5.700.v20200207-2156/org.eclipse.equinox.launcher-1.5.700.v20200207-2156.jar -data /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/containers/org.eclipse.linuxtools.docker.editor.ls.tests/target/work/data -install /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/containers/org.eclipse.linuxtools.docker.editor.ls.tests/target/work -configuration /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/containers/org.eclipse.linuxtools.docker.editor.ls.tests/target/work/configuration -application org.eclipse.tycho.surefire.osgibooter.uitest -testproperties /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/containers/org.eclipse.linuxtools.docker.editor.ls.tests/target/surefire.properties -product org.eclipse.platform.ide in working directory /Users/ajhomer/development/org.eclipse.linuxtools_from-bionic/containers/org.eclipse.linuxtools.docker.editor.ls.tests -> [Help 1]
[ERROR
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR]   mvn <args> -rf :org.eclipse.linuxtools.remote.proxy.tests
 
_______________________________________________
linuxtools-dev mailing list
linuxtools-dev@xxxxxxxxxxx
To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/linuxtools-dev


Back to the top