Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Keppler2018-10-09 07:10:32 +0000
committerMichael Keppler2018-10-09 07:10:32 +0000
commitdc8a5caece10b9e914a9d9bc6597b0862fba5dd0 (patch)
treee2d814a84b71bd1f64ed88045fe94b25d447ee7d
parent6228786e3ff33faea49550e1fcf57e51f31e8950 (diff)
downloadegit-github-dc8a5caece10b9e914a9d9bc6597b0862fba5dd0.tar.gz
egit-github-dc8a5caece10b9e914a9d9bc6597b0862fba5dd0.tar.xz
egit-github-dc8a5caece10b9e914a9d9bc6597b0862fba5dd0.zip
Have separate test sources
There are no functional changes in the IDE, except for test source folders having a different icon color. Bug: 539933 Change-Id: Ie156edf2f5ec99eea6d67c8ee5e812fe077895e9 Signed-off-by: Michael Keppler <Michael.Keppler@gmx.de>
-rw-r--r--org.eclipse.egit.github.core.tests/.classpath24
-rw-r--r--org.eclipse.mylyn.github.tests/.classpath6
2 files changed, 21 insertions, 9 deletions
diff --git a/org.eclipse.egit.github.core.tests/.classpath b/org.eclipse.egit.github.core.tests/.classpath
index 1747f410..f04af4e1 100644
--- a/org.eclipse.egit.github.core.tests/.classpath
+++ b/org.eclipse.egit.github.core.tests/.classpath
@@ -1,8 +1,16 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<classpath>
- <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
- <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
- <classpathentry kind="src" path="src"/>
- <classpathentry kind="src" path="resources"/>
- <classpathentry kind="output" path="bin"/>
-</classpath>
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+ <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
+ <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
+ <classpathentry kind="src" path="src">
+ <attributes>
+ <attribute name="test" value="true"/>
+ </attributes>
+ </classpathentry>
+ <classpathentry kind="src" path="resources">
+ <attributes>
+ <attribute name="test" value="true"/>
+ </attributes>
+ </classpathentry>
+ <classpathentry kind="output" path="bin"/>
+</classpath>
diff --git a/org.eclipse.mylyn.github.tests/.classpath b/org.eclipse.mylyn.github.tests/.classpath
index eca7bdba..3e5654f1 100644
--- a/org.eclipse.mylyn.github.tests/.classpath
+++ b/org.eclipse.mylyn.github.tests/.classpath
@@ -2,6 +2,10 @@
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
- <classpathentry kind="src" path="src"/>
+ <classpathentry kind="src" path="src">
+ <attributes>
+ <attribute name="test" value="true"/>
+ </attributes>
+ </classpathentry>
<classpathentry kind="output" path="bin"/>
</classpath>

Back to the top