|
From: <caw...@us...> - 2007-07-18 15:55:30
|
Revision: 2779
http://svn.sourceforge.net/rubyeclipse/?rev=2779&view=rev
Author: cawilliams
Date: 2007-07-18 08:55:28 -0700 (Wed, 18 Jul 2007)
Log Message:
-----------
fix broken test and test plugin
Modified Paths:
--------------
trunk/org.rubypeople.rdt.debug.core.tests/build.properties
trunk/org.rubypeople.rdt.debug.core.tests/src/org/rubypeople/rdt/debug/core/tests/FTC_ClassicDebuggerCommunicationTest.java
Added Paths:
-----------
trunk/org.rubypeople.rdt.debug.core.tests/META-INF/
trunk/org.rubypeople.rdt.debug.core.tests/META-INF/MANIFEST.MF
Removed Paths:
-------------
trunk/org.rubypeople.rdt.debug.core.tests/plugin.xml
Added: trunk/org.rubypeople.rdt.debug.core.tests/META-INF/MANIFEST.MF
===================================================================
--- trunk/org.rubypeople.rdt.debug.core.tests/META-INF/MANIFEST.MF (rev 0)
+++ trunk/org.rubypeople.rdt.debug.core.tests/META-INF/MANIFEST.MF 2007-07-18 15:55:28 UTC (rev 2779)
@@ -0,0 +1,20 @@
+Manifest-Version: 1.0
+Bundle-ManifestVersion: 2
+Bundle-Name: RDT Debug Core Tests
+Bundle-SymbolicName: org.rubypeople.rdt.debug.core.tests
+Bundle-Version: 0.0.0
+Bundle-ClassPath: rdtdebugcoretests.jar
+Bundle-Activator: org.rubypeople.rdt.debug.core.tests.RdtDebugTestsPlugin
+Bundle-Vendor: RubyPeople
+Bundle-Localization: plugin
+Export-Package: org.rubypeople.rdt.debug.core.tests
+Require-Bundle: org.junit,
+ org.rubypeople.rdt.debug.core,
+ org.eclipse.debug.core,
+ org.kxml2,
+ org.eclipse.core.resources,
+ org.rubypeople.rdt.launching,
+ org.eclipse.core.runtime,
+ org.rubypeople.rdt.core,
+ org.rubypeople.eclipse.testutils
+Eclipse-LazyStart: true
Property changes on: trunk/org.rubypeople.rdt.debug.core.tests/META-INF/MANIFEST.MF
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Modified: trunk/org.rubypeople.rdt.debug.core.tests/build.properties
===================================================================
--- trunk/org.rubypeople.rdt.debug.core.tests/build.properties 2007-07-18 15:46:32 UTC (rev 2778)
+++ trunk/org.rubypeople.rdt.debug.core.tests/build.properties 2007-07-18 15:55:28 UTC (rev 2779)
@@ -1,3 +1,5 @@
source.rdtdebugcoretests.jar = src/
bin.includes = rdtdebugcoretests.jar,\
- plugin.xml
+ plugin.xml,\
+ META-INF/,\
+ ruby/
Deleted: trunk/org.rubypeople.rdt.debug.core.tests/plugin.xml
===================================================================
--- trunk/org.rubypeople.rdt.debug.core.tests/plugin.xml 2007-07-18 15:46:32 UTC (rev 2778)
+++ trunk/org.rubypeople.rdt.debug.core.tests/plugin.xml 2007-07-18 15:55:28 UTC (rev 2779)
@@ -1,28 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<?eclipse version="3.0"?>
-<plugin
- id="org.rubypeople.rdt.debug.core.tests"
- name="RDT Debug Core Tests"
- version="0.0.0"
- provider-name="RubyPeople"
- class="org.rubypeople.rdt.debug.core.tests.RdtDebugTestsPlugin">
-
- <runtime>
- <library name="rdtdebugcoretests.jar">
- <export name="*"/>
- </library>
- </runtime>
-
- <requires>
- <import plugin="org.junit"/>
- <import plugin="org.rubypeople.rdt.debug.core"/>
- <import plugin="org.eclipse.debug.core"/>
- <import plugin="org.kxml2"/>
- <import plugin="org.eclipse.core.resources"/>
- <import plugin="org.rubypeople.rdt.launching"/>
- <import plugin="org.eclipse.core.runtime"/>
- <import plugin="org.rubypeople.rdt.core"/>
- <import plugin="org.rubypeople.eclipse.testutils"/>
- </requires>
-
-</plugin>
Modified: trunk/org.rubypeople.rdt.debug.core.tests/src/org/rubypeople/rdt/debug/core/tests/FTC_ClassicDebuggerCommunicationTest.java
===================================================================
--- trunk/org.rubypeople.rdt.debug.core.tests/src/org/rubypeople/rdt/debug/core/tests/FTC_ClassicDebuggerCommunicationTest.java 2007-07-18 15:46:32 UTC (rev 2778)
+++ trunk/org.rubypeople.rdt.debug.core.tests/src/org/rubypeople/rdt/debug/core/tests/FTC_ClassicDebuggerCommunicationTest.java 2007-07-18 15:55:28 UTC (rev 2779)
@@ -72,7 +72,7 @@
}
public void startRubyProcess() throws Exception {
- String cmd = FTC_ClassicDebuggerCommunicationTest.RUBY_INTERPRETER + " -I" + createIncludeDir() + " -I" + getTmpDir().replace('\\', '/') + " -reclipseDebugVerbose.rb " + getRubyTestFilename();
+ String cmd = FTC_ClassicDebuggerCommunicationTest.RUBY_INTERPRETER + " -I" + createIncludeDir() + " -I" + getTmpDir().replace('\\', '/') + " -rclassic-debug-verbose.rb " + getRubyTestFilename();
System.out.println("Starting: " + cmd);
process = Runtime.getRuntime().exec(cmd);
rubyStderrRedirectorThread = new OutputRedirectorThread(process.getErrorStream());
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|