diff --git a/releng/org.eclipse.cdt.releng/.classpath b/releng/org.eclipse.cdt.releng/.classpath deleted file mode 100644 index ea230fa6225..00000000000 --- a/releng/org.eclipse.cdt.releng/.classpath +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/releng/org.eclipse.cdt.releng/.cvsignore b/releng/org.eclipse.cdt.releng/.cvsignore index ba077a4031a..e69de29bb2d 100644 --- a/releng/org.eclipse.cdt.releng/.cvsignore +++ b/releng/org.eclipse.cdt.releng/.cvsignore @@ -1 +0,0 @@ -bin diff --git a/releng/org.eclipse.cdt.releng/.project b/releng/org.eclipse.cdt.releng/.project index 5faaf5ee411..1bfb61f62db 100644 --- a/releng/org.eclipse.cdt.releng/.project +++ b/releng/org.eclipse.cdt.releng/.project @@ -3,35 +3,9 @@ org.eclipse.cdt.releng - org.apache.xerces - org.eclipse.core.boot - org.eclipse.core.resources - org.eclipse.core.runtime - org.eclipse.pde.core - org.eclipse.pde.ui - org.eclipse.team.core - org.eclipse.team.cvs.core - org.eclipse.ui - - org.eclipse.jdt.core.javabuilder - - - - - org.eclipse.pde.ManifestBuilder - - - - - org.eclipse.pde.SchemaBuilder - - - - org.eclipse.pde.PluginNature - org.eclipse.jdt.core.javanature diff --git a/releng/org.eclipse.cdt.releng/JUNIT.XSL b/releng/org.eclipse.cdt.releng/JUNIT.XSL deleted file mode 100644 index a7dd9abed93..00000000000 --- a/releng/org.eclipse.cdt.releng/JUNIT.XSL +++ /dev/null @@ -1,455 +0,0 @@ - - - - - - - - - - - - - - - - - -
- - - -
- - - -
- - - - - - -
- - - - - - - - -

Packages

- Note: package statistics are not computed recursively, they only sum up all of its testsuites numbers. - - - - - - - - - - - - - - - - - Failure - Error - - - - - - - - - -
- - - -
-
- - - - - - - - - - - - -

Package

- - - - - - -
- Back to top -

-

- - - - - - - - -

TestCase

- - - - - - - - - - -
- -

- - Back to top - - - - -

Summary

- - - - - - - - - - - - - - - - - Failure - Error - - - - - - - - - -
TestsFailuresErrorsSuccess rateTime
- - - - - - - -
- - - - -
- Note: failures are anticipated and checked for with assertions while errors are unanticipated. -
-
- - - - cur = TestCases['.'] = new Array(); - - - cur[''] = ''; - - - - - -

Unit Test Results

- - - - - -
Designed for use with JUnit and Ant.
-
-
- - - - Name - Tests - Errors - Failures - Time(s) - - - - - - - Name - Tests - Errors - Failures - Time(s) - - - - - - - Name - Status - Type - Time(s) - - - - - - - - - - - Failure - Error - - - - - - - - - - - - - - - - - - - - - Error - - - - - - Failure - - - - Error - - - - Success - - - - - - - - - - - - - - - - - - - - - - - - N/A - - - - - - -

- - - - - - - - - - - - - \\ - - - - - - - - - - - - - - - - -
- - - -
- - - -
-
- - - - - - - - - - - - - diff --git a/releng/org.eclipse.cdt.releng/build.properties b/releng/org.eclipse.cdt.releng/build.properties deleted file mode 100644 index 08e19c0dc85..00000000000 --- a/releng/org.eclipse.cdt.releng/build.properties +++ /dev/null @@ -1,4 +0,0 @@ -source.releng.jar = src/ -bin.includes = plugin.xml,\ - *.jar,\ - releng.jar diff --git a/releng/org.eclipse.cdt.releng/doall b/releng/org.eclipse.cdt.releng/doall deleted file mode 100644 index f695d0eaf47..00000000000 --- a/releng/org.eclipse.cdt.releng/doall +++ /dev/null @@ -1,16 +0,0 @@ -# -# The main build script -# - The assumption is that the scripts start off in the root directory -# of the eclipse install doing the build -# - -if [ -n "$CDT_ROOT" ]; then cd $CDT_ROOT; fi - -for i in dobuild doinstall dotests dopost -do - if ! workspace/org.eclipse.cdt.releng/$i - then - echo $i failed - exit 1 - fi -done diff --git a/releng/org.eclipse.cdt.releng/dobuild b/releng/org.eclipse.cdt.releng/dobuild deleted file mode 100644 index e30ec4a7fdf..00000000000 --- a/releng/org.eclipse.cdt.releng/dobuild +++ /dev/null @@ -1,19 +0,0 @@ -# -# Main build script -# - the following environment variables need to be set -# - $CDT_USER - the username to use on the eclipse download machine -# - $CDT_PASSWD - the password for that account -# - -# -# Run Build -# - -if [ -z "$CDT_USER" ] -then - echo CDT_USER environment variable not set - exit 1 -fi - -./eclipse -nosplash -application org.eclipse.cdt.releng.build \ - -vmargs -Dcdt.build.user=$CDT_USER -Dcdt.build.passwd=$CDT_PASSWD diff --git a/releng/org.eclipse.cdt.releng/doinstall b/releng/org.eclipse.cdt.releng/doinstall deleted file mode 100644 index a47012e2068..00000000000 --- a/releng/org.eclipse.cdt.releng/doinstall +++ /dev/null @@ -1,32 +0,0 @@ -# -# Set up test environment -# - the assumption is that the necessary zip files are in a zip file -# in the eclipse install -# - -rm -fr testspace -mkdir testspace -cd testspace -unzip -qq ../zip/eclipse-SDK-2.1.1-linux-gtk.zip - -cd eclipse/plugins -unzip -qq ../../../zip/org.eclipse.test_2.1.0.zip -unzip -qq ../../../zip/org.eclipse.ant.optional.junit_2.1.0.zip -cd .. - -export BUILD_SITE=../../workspace/build.site - -for d in plugins features -do - for i in $BUILD_SITE/$d/* - do - export DEST=$d/`echo $i | sed -e s:$BUILD_SITE/$d/:: -e s/.jar//` - mkdir $DEST - cd $DEST - jar xf ../../$i - cd ../.. - done -done - -# Back up to the top dir -cd ../.. diff --git a/releng/org.eclipse.cdt.releng/dopost b/releng/org.eclipse.cdt.releng/dopost deleted file mode 100644 index d711fdc9494..00000000000 --- a/releng/org.eclipse.cdt.releng/dopost +++ /dev/null @@ -1,16 +0,0 @@ -cd results - -# Update the build page - -export CDT_VERSION=`cat version.txt` -export CDT_LOGS=`echo org.*.html` - -../workspace/org.eclipse.cdt.releng/edit.pl $CDT_VERSION $CDT_LOGS < index.html > index2.html -mv index2.html index.html -cd .. - -# Upload to build page using eclipse - -./eclipse -nosplash -application org.eclipse.cdt.releng.postResults \ - -version $CDT_VERSION -logs $CDT_LOGS \ - -vmargs -Dcdt.build.user=$CDT_USER -Dcdt.build.passwd=$CDT_PASSWD diff --git a/releng/org.eclipse.cdt.releng/dotests b/releng/org.eclipse.cdt.releng/dotests deleted file mode 100644 index 0c671b43cb7..00000000000 --- a/releng/org.eclipse.cdt.releng/dotests +++ /dev/null @@ -1,28 +0,0 @@ -# -# Run Tests -# - -export RESULTS=`pwd`/results -rm -fr $RESULTS -mkdir $RESULTS - -cd testspace/eclipse - -# TODO - add in the rest of the test plugins -export PLUGINS='org.eclipse.cdt.core.tests' -for i in $PLUGINS -do - ./eclipse -nosplash -application org.eclipse.ant.core.antRunner \ - -f plugins/$i*/test.xml -Declipse-home=`pwd` \ - -Dorg.eclipse.test=org.eclipse.test_2.1.0 \ - -Dos=linux -Dws=gtk -Darch=x86 - mv $i*.xml $RESULTS -done - -cd $RESULTS -for i in $PLUGINS -do - xsltproc ../workspace/org.eclipse.cdt.releng/JUNIT.XSL $i.xml > $i.html -done - -cd .. diff --git a/releng/org.eclipse.cdt.releng/edit.pl b/releng/org.eclipse.cdt.releng/edit.pl deleted file mode 100644 index da5cc6dbc42..00000000000 --- a/releng/org.eclipse.cdt.releng/edit.pl +++ /dev/null @@ -1,24 +0,0 @@ -#!/usr/bin/perl - -# First arg is version number -# The rest are the log files - -foreach () -{ - if (/