Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [ptp-dev] Can't create a parallel launch config

I don't think this has to do with any of the changes I made
recently.

This looks like a CoreException being converted
to an IllegalArgumentException on line 279 of
org.eclipse.ptp.ui.PTPUIPlugin.java.

For ORTE I have found the following CoreException's:

1) on line 202 of org.eclipse.ptp.internal.core.ModelManager.java

if (monitor.isCanceled()) {
   throw new CoreException(Status.CANCEL_STATUS);
}

2) on line 222 of org.eclipse.ptp.internal.core.ModelManager.java

throw new CoreException(new Status(IStatus.ERROR,
  PTPCorePlugin.getUniqueIdentifier(), IStatus.ERROR,
    "There was an error starting the OMPI proxy runtime.  The path to
    'ptp_orte_proxy' or 'orted' "+
    "may have been incorrect.  The 'orted' binary MUST be in your PATH
      to be found by 'ptp_orte_proxy'.  "+
   "Try checking the console log or error logs for more detailed
      information.",
   null));

Or possibley a CoreException from
org.eclipse.ptp.rtsystem.ompi.OMPIMonitoringSystem.initiateDiscovery()


On Thu, 2006-09-28 at 10:01 -0400, Beth Tibbitts wrote:
> Hi.  I just rebuilt PTP from CVS, on my office Linux machine
> had to comment out some MPICH2 stuff in core, but except for that it
> built fine.
> (Running on Linux with OpenMPI 1.0.2)
> (P.S. Greg my Thinkpad Linux PTP build is ok, will continue tutorial
> run-thru there.) 
> 
> But when I try to create a parallel launch configuration I get an
> error.
> (I think this is recent; what I built last week(?) from CVS is fine)
> This occurs before I can even view the launch config -- as soon as i
> click 'new' on launch config dialog. 
> 
> java.lang.IllegalArgumentException:
> at org.eclipse.core.runtime.Assert.isLegal(Assert.java:62)
> at org.eclipse.core.runtime.Assert.isLegal(Assert.java:46)
> at org.eclipse.core.runtime.Status.setMessage(Status.java :178)
> at org.eclipse.core.runtime.Status.<init>(Status.java:85)
> at org.eclipse.ptp.ui.PTPUIPlugin.refreshRuntimeSystemNow
> (PTPUIPlugin.java:287)
> at org.eclipse.ptp.ui.PTPUIPlugin.refreshRuntimeSystem
> (PTPUIPlugin.java :268)
> at org.eclipse.ptp.launch.ui.ParallelTab.createControl
> (ParallelTab.java:120)
> at
> org.eclipse.debug.internal.ui.launchConfigurations.LaunchConfigurationTabGroupViewer.showTabsFor(LaunchConfigurationTabGroupViewer.java :757)
> at
> org.eclipse.debug.internal.ui.launchConfigurations.LaunchConfigurationTabGroupViewer.showInstanceTabsFor(LaunchConfigurationTabGroupViewer.java:697)
> at
> org.eclipse.debug.internal.ui.launchConfigurations.LaunchConfigurationTabGroupViewer.displayInstanceTabs (LaunchConfigurationTabGroupViewer.java:632)
> at
> org.eclipse.debug.internal.ui.launchConfigurations.LaunchConfigurationTabGroupViewer$6.run(LaunchConfigurationTabGroupViewer.java:548)
> 
> -- 
> ...Beth
> 
> _______________________________________________
> ptp-dev mailing list
> ptp-dev@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/ptp-dev



Back to the top