mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-02 22:55:26 +02:00
Merge remote branch 'cdt/master' into sd90
This commit is contained in:
commit
d01d0bfd60
16 changed files with 122 additions and 8 deletions
core/org.eclipse.cdt.core.tests
debug/org.eclipse.cdt.debug.mi.core
doc/org.eclipse.cdt.doc.isv
memory/org.eclipse.cdt.debug.ui.memory.source-feature
.projectbuild.propertieseclipse_update_120.jpgepl-v10.htmlfeature.propertiesfeature.xmllicense.htmlpom.xml
p2/org.eclipse.cdt.p2-feature
pom.xmlreleng/org.eclipse.cdt.repo
|
@ -79,6 +79,8 @@ public class CProjectDescriptionStorageTests extends BaseTestCase {
|
||||||
for (IResource child : cProj.getProject().getFolder(".csettings").members())
|
for (IResource child : cProj.getProject().getFolder(".csettings").members())
|
||||||
child.setReadOnly(false);
|
child.setReadOnly(false);
|
||||||
}
|
}
|
||||||
|
// Wait for a few seconds for the indexer to get going so we avoid deadlock
|
||||||
|
Thread.sleep(2000);
|
||||||
// Delete the project
|
// Delete the project
|
||||||
CProjectHelper.delete(cProj);
|
CProjectHelper.delete(cProj);
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,6 +15,14 @@
|
||||||
<artifactId>org.eclipse.cdt.core.tests</artifactId>
|
<artifactId>org.eclipse.cdt.core.tests</artifactId>
|
||||||
<packaging>eclipse-test-plugin</packaging>
|
<packaging>eclipse-test-plugin</packaging>
|
||||||
|
|
||||||
|
<repositories>
|
||||||
|
<repository>
|
||||||
|
<id>cdt.repo</id>
|
||||||
|
<url>file:/${basedir}/../../releng/org.eclipse.cdt.repo/target/repository</url>
|
||||||
|
<layout>p2</layout>
|
||||||
|
</repository>
|
||||||
|
</repositories>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
<plugin>
|
||||||
|
@ -28,6 +36,13 @@
|
||||||
<include>**/AutomatedIntegrationSuite.*</include>
|
<include>**/AutomatedIntegrationSuite.*</include>
|
||||||
</includes>
|
</includes>
|
||||||
<testFailureIgnore>true</testFailureIgnore>
|
<testFailureIgnore>true</testFailureIgnore>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<artifactId>org.eclipse.cdt.feature.group</artifactId>
|
||||||
|
<version>8.0.0.${buildQualifier}</version>
|
||||||
|
<type>p2-installable-unit</type>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
<relativePath>../../pom.xml</relativePath>
|
<relativePath>../../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<version>7.1.100-SNAPSHOT</version>
|
<version>7.2.0-SNAPSHOT</version>
|
||||||
<artifactId>org.eclipse.cdt.debug.mi.core</artifactId>
|
<artifactId>org.eclipse.cdt.debug.mi.core</artifactId>
|
||||||
<packaging>eclipse-plugin</packaging>
|
<packaging>eclipse-plugin</packaging>
|
||||||
</project>
|
</project>
|
||||||
|
|
1
doc/org.eclipse.cdt.doc.isv/.gitignore
vendored
Normal file
1
doc/org.eclipse.cdt.doc.isv/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
/cdtconvert.txt
|
|
@ -10,13 +10,13 @@
|
||||||
<target name="convertSchemaToHtml" if="eclipse.running">
|
<target name="convertSchemaToHtml" if="eclipse.running">
|
||||||
<property name="dest" value="reference/extension-points" />
|
<property name="dest" value="reference/extension-points" />
|
||||||
<record name="${basedir}/cdtconvert.txt" action="start"/>
|
<record name="${basedir}/cdtconvert.txt" action="start"/>
|
||||||
<pde.convertSchemaToHTML manifest="../org.eclipse.cdt.core/plugin.xml" destination="${dest}" />
|
<pde.convertSchemaToHTML manifest="../../core/org.eclipse.cdt.core/plugin.xml" destination="${dest}" />
|
||||||
<pde.convertSchemaToHTML manifest="../org.eclipse.cdt.ui/plugin.xml" destination="${dest}" />
|
<pde.convertSchemaToHTML manifest="../../core/org.eclipse.cdt.ui/plugin.xml" destination="${dest}" />
|
||||||
<pde.convertSchemaToHTML manifest="../org.eclipse.cdt.debug.core/plugin.xml" destination="${dest}" />
|
<pde.convertSchemaToHTML manifest="../../debug/org.eclipse.cdt.debug.core/plugin.xml" destination="${dest}" />
|
||||||
<pde.convertSchemaToHTML manifest="../org.eclipse.cdt.make.core/plugin.xml" destination="${dest}" />
|
<pde.convertSchemaToHTML manifest="../../build/org.eclipse.cdt.make.core/plugin.xml" destination="${dest}" />
|
||||||
<pde.convertSchemaToHTML manifest="../org.eclipse.cdt.make.ui/plugin.xml" destination="${dest}" />
|
<pde.convertSchemaToHTML manifest="../../build/org.eclipse.cdt.make.ui/plugin.xml" destination="${dest}" />
|
||||||
<pde.convertSchemaToHTML manifest="../org.eclipse.cdt.managedbuilder.core/plugin.xml" destination="${dest}" />
|
<pde.convertSchemaToHTML manifest="../../build/org.eclipse.cdt.managedbuilder.core/plugin.xml" destination="${dest}" />
|
||||||
<pde.convertSchemaToHTML manifest="../org.eclipse.cdt.managedbuilder.ui/plugin.xml" destination="${dest}" />
|
<pde.convertSchemaToHTML manifest="../../build/org.eclipse.cdt.managedbuilder.ui/plugin.xml" destination="${dest}" />
|
||||||
<record name="${basedir}/cdtconvert.txt" action="stop"/>
|
<record name="${basedir}/cdtconvert.txt" action="stop"/>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,17 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<projectDescription>
|
||||||
|
<name>org.eclipse.cdt.debug.ui.memory.source-feature</name>
|
||||||
|
<comment></comment>
|
||||||
|
<projects>
|
||||||
|
</projects>
|
||||||
|
<buildSpec>
|
||||||
|
<buildCommand>
|
||||||
|
<name>org.eclipse.pde.FeatureBuilder</name>
|
||||||
|
<arguments>
|
||||||
|
</arguments>
|
||||||
|
</buildCommand>
|
||||||
|
</buildSpec>
|
||||||
|
<natures>
|
||||||
|
<nature>org.eclipse.pde.FeatureNature</nature>
|
||||||
|
</natures>
|
||||||
|
</projectDescription>
|
|
@ -0,0 +1 @@
|
||||||
|
bin.includes = feature.xml
|
Before ![]() (image error) Size: 21 KiB After ![]() (image error) Size: 21 KiB ![]() ![]() |
|
@ -0,0 +1,52 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<feature
|
||||||
|
id="org.eclipse.cdt.debug.ui.memory.source"
|
||||||
|
label="%featureName"
|
||||||
|
version="2.1.100.qualifier"
|
||||||
|
provider-name="%providerName">
|
||||||
|
|
||||||
|
<description>
|
||||||
|
%description
|
||||||
|
</description>
|
||||||
|
|
||||||
|
<copyright>
|
||||||
|
%copyright
|
||||||
|
</copyright>
|
||||||
|
|
||||||
|
<license url="%licenseURL">
|
||||||
|
%license
|
||||||
|
</license>
|
||||||
|
|
||||||
|
<url>
|
||||||
|
<update label="%updateSiteName" url="http://download.eclipse.org/tools/cdt/releases/indigo"/>
|
||||||
|
</url>
|
||||||
|
|
||||||
|
<plugin
|
||||||
|
id="org.eclipse.cdt.debug.ui.memory.search.source"
|
||||||
|
download-size="0"
|
||||||
|
install-size="0"
|
||||||
|
version="0.0.0"
|
||||||
|
unpack="false"/>
|
||||||
|
|
||||||
|
<plugin
|
||||||
|
id="org.eclipse.cdt.debug.ui.memory.traditional.source"
|
||||||
|
download-size="0"
|
||||||
|
install-size="0"
|
||||||
|
version="0.0.0"
|
||||||
|
unpack="false"/>
|
||||||
|
|
||||||
|
<plugin
|
||||||
|
id="org.eclipse.cdt.debug.ui.memory.transport.source"
|
||||||
|
download-size="0"
|
||||||
|
install-size="0"
|
||||||
|
version="0.0.0"
|
||||||
|
unpack="false"/>
|
||||||
|
|
||||||
|
<plugin
|
||||||
|
id="org.eclipse.cdt.debug.ui.memory.memorybrowser.source"
|
||||||
|
download-size="0"
|
||||||
|
install-size="0"
|
||||||
|
version="0.0.0"
|
||||||
|
unpack="false"/>
|
||||||
|
|
||||||
|
</feature>
|
|
@ -0,0 +1,17 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project
|
||||||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
||||||
|
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
<parent>
|
||||||
|
<groupId>org.eclipse.cdt</groupId>
|
||||||
|
<artifactId>cdt-parent</artifactId>
|
||||||
|
<version>8.0.0-SNAPSHOT</version>
|
||||||
|
<relativePath>../../pom.xml</relativePath>
|
||||||
|
</parent>
|
||||||
|
|
||||||
|
<version>2.1.100-SNAPSHOT</version>
|
||||||
|
<artifactId>org.eclipse.cdt.debug.ui.memory.source</artifactId>
|
||||||
|
<packaging>eclipse-feature</packaging>
|
||||||
|
</project>
|
|
@ -25,4 +25,11 @@
|
||||||
version="0.0.0"
|
version="0.0.0"
|
||||||
unpack="false"/>
|
unpack="false"/>
|
||||||
|
|
||||||
|
<plugin
|
||||||
|
id="org.eclipse.cdt.p2.source"
|
||||||
|
download-size="0"
|
||||||
|
install-size="0"
|
||||||
|
version="0.0.0"
|
||||||
|
unpack="false"/>
|
||||||
|
|
||||||
</feature>
|
</feature>
|
||||||
|
|
1
pom.xml
1
pom.xml
|
@ -135,6 +135,7 @@
|
||||||
<module>memory/org.eclipse.cdt.debug.ui.memory.traditional</module>
|
<module>memory/org.eclipse.cdt.debug.ui.memory.traditional</module>
|
||||||
<module>memory/org.eclipse.cdt.debug.ui.memory.transport</module>
|
<module>memory/org.eclipse.cdt.debug.ui.memory.transport</module>
|
||||||
<module>memory/org.eclipse.cdt.debug.ui.memory-feature</module>
|
<module>memory/org.eclipse.cdt.debug.ui.memory-feature</module>
|
||||||
|
<module>memory/org.eclipse.cdt.debug.ui.memory.source-feature</module>
|
||||||
|
|
||||||
<module>cross/org.eclipse.cdt.build.crossgcc</module>
|
<module>cross/org.eclipse.cdt.build.crossgcc</module>
|
||||||
<module>cross/org.eclipse.cdt.build.crossgcc-feature</module>
|
<module>cross/org.eclipse.cdt.build.crossgcc-feature</module>
|
||||||
|
|
|
@ -9,6 +9,7 @@
|
||||||
<feature url="features/org.eclipse.cdt.xlc.feature_0.0.0.qualifier.jar" id="org.eclipse.cdt.xlc.feature" version="0.0.0"/>
|
<feature url="features/org.eclipse.cdt.xlc.feature_0.0.0.qualifier.jar" id="org.eclipse.cdt.xlc.feature" version="0.0.0"/>
|
||||||
<feature url="features/org.eclipse.cdt.util_0.0.0.qualifier.jar" id="org.eclipse.cdt.util" version="0.0.0"/>
|
<feature url="features/org.eclipse.cdt.util_0.0.0.qualifier.jar" id="org.eclipse.cdt.util" version="0.0.0"/>
|
||||||
<feature url="features/org.eclipse.cdt.debug.ui.memory_0.0.0.qualifier.jar" id="org.eclipse.cdt.debug.ui.memory" version="0.0.0"/>
|
<feature url="features/org.eclipse.cdt.debug.ui.memory_0.0.0.qualifier.jar" id="org.eclipse.cdt.debug.ui.memory" version="0.0.0"/>
|
||||||
|
<feature url="features/org.eclipse.cdt.debug.ui.memory.source_0.0.0.qualifier.jar" id="org.eclipse.cdt.debug.ui.memory.source" version="0.0.0"/>
|
||||||
<feature url="features/org.eclipse.cdt.build.crossgcc_0.0.0.qualifier.jar" id="org.eclipse.cdt.build.crossgcc" version="0.0.0"/>
|
<feature url="features/org.eclipse.cdt.build.crossgcc_0.0.0.qualifier.jar" id="org.eclipse.cdt.build.crossgcc" version="0.0.0"/>
|
||||||
<feature url="features/org.eclipse.cdt.launch.remote_0.0.0.qualifier.jar" id="org.eclipse.cdt.launch.remote" version="0.0.0"/>
|
<feature url="features/org.eclipse.cdt.launch.remote_0.0.0.qualifier.jar" id="org.eclipse.cdt.launch.remote" version="0.0.0"/>
|
||||||
<feature url="features/org.eclipse.cdt.msw_0.0.0.qualifier.jar" id="org.eclipse.cdt.msw" version="0.0.0"/>
|
<feature url="features/org.eclipse.cdt.msw_0.0.0.qualifier.jar" id="org.eclipse.cdt.msw" version="0.0.0"/>
|
||||||
|
|
Loading…
Add table
Reference in a new issue