Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2016-12-21 20:20:21 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2016-12-22 03:09:38 +0300
commit8027e0bb3954cb57870fd18071330e28030caee2 (patch)
tree07cc56ef6bc69a9df3c8acedc6f4b885aee8289c /mcs/class/System.Web
parent801cc685833e8db61816c879db0ef2f4bf5d3abd (diff)
[bcl] Clean up old run-test.bat and *.csproj files
They .bat files haven't been used for a long time and don't work anymore. The csproj files for the facades have a different name now.
Diffstat (limited to 'mcs/class/System.Web')
-rwxr-xr-xmcs/class/System.Web/System.Web.Phantom/makefile.build41
-rwxr-xr-xmcs/class/System.Web/Test/mainsoft/run-test.bat130
-rw-r--r--mcs/class/System.Web/Test/mainsoft/run-test20.bat106
-rwxr-xr-xmcs/class/System.Web/makefile.build42
-rwxr-xr-xmcs/class/System.Web/run-mono-tests.bat239
-rw-r--r--mcs/class/System.Web/run-tests.bat4
6 files changed, 0 insertions, 562 deletions
diff --git a/mcs/class/System.Web/System.Web.Phantom/makefile.build b/mcs/class/System.Web/System.Web.Phantom/makefile.build
deleted file mode 100755
index d3eebf1f759..00000000000
--- a/mcs/class/System.Web/System.Web.Phantom/makefile.build
+++ /dev/null
@@ -1,41 +0,0 @@
-<!--Minimalistic buildfile -->
-<project name="System.Web.Phantom" default="all">
-<property name="ghroot" value="${project::get-base-directory()}\..\..\..\..\.."/>
- <!--Allways at the beginning-->
- <include buildfile="${ghroot}\vsbuild\properties.xml" />
-
- <!--MANDATORY SECTION-->
-
- <!--Could be GH ANT .NET-->
- <property name="projecttype" value=".NET2005"/>
- <!--Could be RUNTIME TOOLS ... -->
- <property name="rules" value="RUNTIME"/>
-
- <property name="msbuild_file" value="System.Web.Phantom.csproj"/>
- <property name="override_config" value="${ghconfiguration}"/>
-
- <!--Fileset describing project output files. Uset by copy/delete rules in framework-->
- <fileset id="output" basedir="${project::get-base-directory()}\bin" failonempty="true">
- <include name="${ghconfiguration}\System.Web.Phantom.dll"/>
- </fileset>
-
- <!--END MANDATORY SECTION-->
-
- <!--OPTIONAL SECTION-->
-<!--
- <target name="postbuild">
-
- </target>
--->
- <!--
- <property name="cvnsrc" value="svn://svn.myrealbox.com/source/trunk/mcs/<cvn_folder>"/>
- <target name="prebuild">
- Put something there if you need
- </target>
- -->
- <!--END OPTIONAL SECTION-->
-
-
- <!--Allways at the end-->
- <include buildfile="${ghroot}\vsbuild\framework.xml" />
-</project>
diff --git a/mcs/class/System.Web/Test/mainsoft/run-test.bat b/mcs/class/System.Web/Test/mainsoft/run-test.bat
deleted file mode 100755
index 076773c749c..00000000000
--- a/mcs/class/System.Web/Test/mainsoft/run-test.bat
+++ /dev/null
@@ -1,130 +0,0 @@
-@ECHO OFF
-
-rem =================================================
-if "%GH_HOME%" == "" (set GH_HOME=c:\Program Files\Mainsoft\Visual MainWin for J2EE)
-if "%JAVA_HOME%" == "" (set JAVA_HOME=%GH_HOME%\jre5)
-set JGAC_PATH=%GH_HOME%\java_refs\framework
-
-rem =================================================
-echo Hiding svn...
-pushd MainsoftWebApp
-FOR /R %%f IN (.svn) DO IF EXIST "%%f" (
-ATTRIB -h "%%f"
-RENAME "%%f" _svn
-)
-
-rem =================================================
-if "%1"=="JBoss" (
-echo Building JBoss web project...
-"%VS71COMNTOOLS%..\IDE\devenv.com" MainsoftWebApp.JBoss.vmwcsproj /build Debug_Java > nul
-) else (
-echo Building Tomcat web project...
-"%VS71COMNTOOLS%..\IDE\devenv.com" MainsoftWebApp.Tomcat.vmwcsproj /build Debug_Java > nul
-)
-
-IF NOT ERRORLEVEL==0 (set BUILD_FAILED=TRUE)
-
-rem =================================================
-echo Restoring svn...
-FOR /R %%f IN (_svn) DO IF EXIST "%%f" (
-RENAME "%%f" .svn
-ATTRIB +h "%%~pf\.svn"
-)
-popd
-
-rem =================================================
-IF "%BUILD_FAILED%"=="TRUE" GOTO FAILURE
-
-rem =================================================
-if "%NUNIT_BUILD%" == "DONE" goto NUNITSKIP
-echo Build NUnit...
-pushd ..\..\..\..\nunit20\
-"%VS71COMNTOOLS%..\IDE\devenv.com" nunit.java.sln /build Debug_Java > nul
-popd
-
-goto NUNITREADY
-:NUNITSKIP
-echo Skipping NUnit Build...
-:NUNITREADY
-set NUNIT_BUILD=DONE
-
-rem =================================================
-echo Build System.Web test client side...
-pushd MainsoftWebTest
-"%VS71COMNTOOLS%..\IDE\devenv.com" SystemWebTest.vmwcsproj /build Debug_Java_NUnit > nul
-popd
-
-rem =================================================
-if "%TEST_17%" == "TRUE" goto SKIPMONO3
-echo Build System.Web mono tests...
-pushd ..
-dos2unix System.Web.UI.HtmlControls\HtmlSelectTest.cs > nul
-dos2unix System.Web.UI.WebControls\CheckBoxListTest.cs > nul
-dos2unix System.Web.UI.WebControls\RepeatInfoTest.auto.cs > nul
-"%VS71COMNTOOLS%..\IDE\devenv.com" TestMonoWeb_jvm.vmwcsproj /build Debug_Java > nul
-popd
-:SKIPMONO3
-
-rem =================================================
-copy MainsoftWebTest\almost_config.xml MainsoftWebTest\bin\almost_config.xml /Y > nul
-copy MainsoftWebTest\test_catalog.xml MainsoftWebTest\bin\test_catalog.xml /Y > nul
-copy MainsoftWebTest\App.gh.config MainsoftWebTest\bin\nunit-console.exe.config /Y > nul
-copy ..\..\..\..\nunit20\core\bin\Debug_Java\nunit.core.jar MainsoftWebTest\bin\nunit.core.jar /Y > nul
-copy ..\..\..\..\nunit20\framework\bin\Debug_Java\nunit.framework.jar MainsoftWebTest\bin\nunit.framework.jar /Y > nul
-copy ..\..\..\..\nunit20\util\bin\Debug_Java\nunit.util.jar MainsoftWebTest\bin\nunit.util.jar /Y > nul
-copy ..\..\..\..\nunit20\nunit-console\bin\Debug_Java\nunit-console.jar MainsoftWebTest\bin\nunit-console.jar /Y > nul
-
-rem =================================================
-echo Buildinig xmltool...
-pushd ..\..\..\..\tools\mono-xmltool
-"%VS71COMNTOOLS%..\IDE\devenv.com" XmlTool.sln /build Debug_Java > nul
-popd
-copy ..\..\..\..\tools\mono-xmltool\bin\Debug_Java\xmltool.exe MainsoftWebTest\bin\xmltool.exe > nul
-copy ..\..\..\..\tools\mono-xmltool\nunit_transform.xslt MainsoftWebTest\bin\nunit_transform.xslt > nul
-
-rem =================================================
-set GH_CP=%JGAC_PATH%\mscorlib.jar
-set GH_CP=%GH_CP%;%JGAC_PATH%\System.jar
-set GH_CP=%GH_CP%;%JGAC_PATH%\System.Xml.jar
-set GH_CP=%GH_CP%;%JGAC_PATH%\System.Web.jar
-set GH_CP=%GH_CP%;%JGAC_PATH%\System.Data.jar
-set GH_CP=%GH_CP%;%JGAC_PATH%\System.Drawing.jar
-set GH_CP=%GH_CP%;%JGAC_PATH%\J2SE.Helpers.jar
-set GH_CP=%GH_CP%;%JGAC_PATH%\J2EE.Helpers.jar
-set GH_CP=%GH_CP%;%JGAC_PATH%\vmwutils.jar
-
-set GH_CP=%GH_CP%;nunit.core.jar
-set GH_CP=%GH_CP%;nunit.framework.jar
-set GH_CP=%GH_CP%;nunit.util.jar
-set GH_CP=%GH_CP%;nunit-console.jar
-
-set ghlogfile=logfile.xml
-set monologfile=mono.xml
-
-pushd MainsoftWebTest\bin
-
-echo Running Mainsoft tests...
-"%JAVA_HOME%\bin\java.exe" -cp .;"%GH_CP%" NUnit.Console.ConsoleUi SystemWebTest.jar /xml=%ghlogfile% /fixture:MonoTests.stand_alone.WebHarness.Harness > nul
-
-if "%TEST_17%" == "TRUE" goto SKIPMONO
-echo Running Mono tests...
-"%JAVA_HOME%\bin\java.exe" -cp .;"%GH_CP%" NUnit.Console.ConsoleUi TestMonoWeb_jvm.jar /xml=%monologfile% /exclude:NotWorking,ValueAdd,InetAccess /fixture:MonoTests.System.Web > nul
-:SKIPMONO
-
-echo Finished...
-xmltool.exe --transform nunit_transform.xslt %ghlogfile%
-
-if "%TEST_17%" == "TRUE" goto SKIPMONO2
-xmltool.exe --transform nunit_transform.xslt %monologfile%
-:SKIPMONO2
-
-popd
-
-goto :END
-:FAILURE
-popd
-echo Failed during build...
-set BUILD_FAILED=
-:END
-
-
diff --git a/mcs/class/System.Web/Test/mainsoft/run-test20.bat b/mcs/class/System.Web/Test/mainsoft/run-test20.bat
deleted file mode 100644
index 5c97ccfe172..00000000000
--- a/mcs/class/System.Web/Test/mainsoft/run-test20.bat
+++ /dev/null
@@ -1,106 +0,0 @@
-@ECHO OFF
-
-rem =================================================
-if "%GH_HOME%" == "" (set GH_HOME=c:\Program Files\Mainsoft\Visual MainWin for J2EE V2)
-if "%VMW_HOME%" == "" (set VMW_HOME=%GH_HOME%)
-if "%JAVA_HOME%" == "" (set JAVA_HOME=%GH_HOME%\jre)
-set JGAC_PATH=%GH_HOME%\java_refs\framework
-
-rem =================================================
-set startDate=%date%
-set startTime=%time%
-set sdy=%startDate:~10%
-set /a sdm=1%startDate:~4,2% - 100
-set /a sdd=1%startDate:~7,2% - 100
-set /a sth=%startTime:~0,2%
-set /a stm=1%startTime:~3,2% - 100
-set /a sts=1%startTime:~6,2% - 100
-set TIMESTAMP=%sdy%_%sdm%_%sdd%_%sth%_%stm%
-
-set OUTPUT_FILE_PREFIX=System_Web_Services
-set RUNNING_FIXTURE=System.Web.Services
-
-set COMMON_PREFIX=%cd%\%TIMESTAMP%_%OUTPUT_FILE_PREFIX%.GH_%GH_VERSION%.1.%USERNAME%
-set GH_OUTPUT_XML=%COMMON_PREFIX%.xml
-set BUILD_LOG=%COMMON_PREFIX%.build.log
-set RUN_LOG=%COMMON_PREFIX%.run.log
-
-rem =================================================
-pushd MainsoftWebApp
-echo Building Tomcat web project...
-msbuild MainsoftWebApp20.Tomcat.csproj /t:deploy /p:Configuration=Debug_Java >>%BUILD_LOG% 2<&1
-popd
-
-IF NOT ERRORLEVEL==0 GOTO FAILURE
-
-rem =================================================
-if "%NUNIT_BUILD%" == "DONE" goto NUNITSKIP
-echo Build NUnit...
-pushd ..\..\..\..\nunit20\
-msbuild nunit20.java.sln /t:build /p:Configuration=Debug_Java20 >>%BUILD_LOG% 2<&1
-popd
-
-goto NUNITREADY
-:NUNITSKIP
-echo Skipping NUnit Build...
-:NUNITREADY
-set NUNIT_BUILD=DONE
-
-rem =================================================
-echo Build System.Web test client side...
-pushd MainsoftWebTest
-msbuild SystemWebTest20.J2EE.csproj /t:build /p:Configuration=Debug_Java_Nunit >>%BUILD_LOG% 2<&1
-popd
-
-
-rem =================================================
-copy MainsoftWebTest\almost_config.xml MainsoftWebTest\bin\almost_config.xml /Y
-copy MainsoftWebTest\test_catalog.xml MainsoftWebTest\bin\test_catalog.xml /Y
-copy MainsoftWebTest\App.gh20.config MainsoftWebTest\bin\nunit-console.exe.config /Y
-copy ..\..\..\..\nunit20\core\bin\Debug_Java\nunit.core.jar MainsoftWebTest\bin\nunit.core.jar /Y
-copy ..\..\..\..\nunit20\framework\bin\Debug_Java\nunit.framework.jar MainsoftWebTest\bin\nunit.framework.jar /Y
-copy ..\..\..\..\nunit20\util\bin\Debug_Java\nunit.util.jar MainsoftWebTest\bin\nunit.util.jar /Y
-copy ..\..\..\..\nunit20\nunit-console\bin\Debug_Java\nunit-console.jar MainsoftWebTest\bin\nunit-console.jar /Y
-
-rem =================================================
-echo Buildinig xmltool...
-pushd ..\..\..\..\tools\mono-xmltool
-msbuild XmlTool20.csproj /p:Configuration=Debug_Java20 >>%BUILD_LOG% 2<&1
-popd
-copy ..\..\..\..\tools\mono-xmltool\bin\Debug_Java\xmltool.exe MainsoftWebTest\bin\xmltool.exe
-copy ..\..\..\..\tools\mono-xmltool\nunit_transform.xslt MainsoftWebTest\bin\nunit_transform.xslt
-
-rem =================================================
-set GH_CP=%JGAC_PATH%\mscorlib.jar
-set GH_CP=%GH_CP%;%JGAC_PATH%\System.jar
-set GH_CP=%GH_CP%;%JGAC_PATH%\System.Xml.jar
-set GH_CP=%GH_CP%;%JGAC_PATH%\System.Web.jar
-set GH_CP=%GH_CP%;%JGAC_PATH%\System.Data.jar
-set GH_CP=%GH_CP%;%JGAC_PATH%\System.Drawing.jar
-set GH_CP=%GH_CP%;%JGAC_PATH%\J2SE.Helpers.jar
-set GH_CP=%GH_CP%;%JGAC_PATH%\J2EE.Helpers.jar
-set GH_CP=%GH_CP%;%JGAC_PATH%\vmwutils.jar
-
-set GH_CP=%GH_CP%;nunit.core.jar
-set GH_CP=%GH_CP%;nunit.framework.jar
-set GH_CP=%GH_CP%;nunit.util.jar
-set GH_CP=%GH_CP%;nunit-console.jar
-
-pushd MainsoftWebTest\bin
-
-echo Running Mainsoft tests...
-"%JAVA_HOME%\bin\java.exe" -cp .;"%GH_CP%" NUnit.Console.ConsoleUi SystemWebTest.jar /xml=%GH_OUTPUT_XML% /fixture:MonoTests.stand_alone.WebHarness.Harness >>%RUN_LOG% 2<&1
-
-echo Finished...
-xmltool.exe --transform nunit_transform.xslt %GH_OUTPUT_XML%
-
-popd
-
-goto :END
-:FAILURE
-popd
-echo Failed during build...
-set BUILD_FAILED=
-:END
-
-
diff --git a/mcs/class/System.Web/makefile.build b/mcs/class/System.Web/makefile.build
deleted file mode 100755
index 31857b371b9..00000000000
--- a/mcs/class/System.Web/makefile.build
+++ /dev/null
@@ -1,42 +0,0 @@
-<!--Minimalistic buildfile -->
-<project name="System.Runtime.Serialization.Formatters.Soap" default="all">
-<property name="ghroot" value="${project::get-base-directory()}\..\..\..\.."/>
- <!--Allways at the beginning-->
- <include buildfile="${ghroot}\vsbuild\properties.xml" />
-
- <!--MANDATORY SECTION-->
-
- <!--Could be GH ANT .NET-->
- <property name="projecttype" value=".NET2005"/>
- <!--Could be RUNTIME TOOLS ... -->
- <property name="rules" value="RUNTIME"/>
-
- <property name="msbuild_file" value="System.Web20.csproj"/>
- <property name="override_config" value="${ghconfiguration_ver}"/>
-
- <!--Fileset describing project output files. Uset by copy/delete rules in framework-->
- <fileset id="output" basedir="${project::get-base-directory()}\bin" failonempty="true">
- <include name="${ghconfiguration_ver}\System.Web.jar"/>
- <include name="${ghconfiguration_ver}\System.Web.dll"/>
- </fileset>
-
- <!--END MANDATORY SECTION-->
-
- <!--OPTIONAL SECTION-->
-<!--
- <target name="postbuild">
-
- </target>
--->
- <!--
- <property name="cvnsrc" value="svn://svn.myrealbox.com/source/trunk/mcs/<cvn_folder>"/>
- <target name="prebuild">
- Put something there if you need
- </target>
- -->
- <!--END OPTIONAL SECTION-->
-
-
- <!--Allways at the end-->
- <include buildfile="${ghroot}\vsbuild\framework.xml" />
-</project>
diff --git a/mcs/class/System.Web/run-mono-tests.bat b/mcs/class/System.Web/run-mono-tests.bat
deleted file mode 100755
index ceba63c6c98..00000000000
--- a/mcs/class/System.Web/run-mono-tests.bat
+++ /dev/null
@@ -1,239 +0,0 @@
-@echo off
-REM ********************************************************
-REM This batch file receives the follwing parameters:
-REM build/rebuild (optional): should the solution file be rebuilded
-REM or just builded before test run (default is rebuild)
-REM example run-tests build
-REM will cause to build (and not rebuild) test solutions,
-REM ********************************************************
-
-IF "%VMW_HOME%"=="" GOTO ENVIRONMENT_EXCEPTION
-
-
-
-IF "%1"=="" (
- set BUILD_OPTION=build
-) ELSE (
- set BUILD_OPTION=%1
-)
-
-REM ********************************************************
-REM Set parameters
-REM ********************************************************
-
-set OUTPUT_FILE_PREFIX=System_Web
-set RUNNING_FIXTURE=System.Web
-set TEST_SOLUTION=Test\TestMonoWeb.J2EE20.sln
-set DEPLOY_PROJECT=Test\mainsoft\MainsoftWebApp20\MainsoftWebApp20.csproj
-set TEST_ASSEMBLY=TestMonoWeb.jar
-set PROJECT_CONFIGURATION=Debug_Java20
-
-
-set startDate=%date%
-set startTime=%time%
-set sdy=%startDate:~10%
-set /a sdm=1%startDate:~4,2% - 100
-set /a sdd=1%startDate:~7,2% - 100
-set /a sth=%startTime:~0,2%
-set /a stm=1%startTime:~3,2% - 100
-set /a sts=1%startTime:~6,2% - 100
-set TIMESTAMP=%sdy%_%sdm%_%sdd%_%sth%_%stm%
-
-
-REM ********************************************************
-REM @echo Set environment
-REM ********************************************************
-
-set JGAC_PATH=%VMW_HOME%\java_refs\framework\
-set TOMCAT_PATH=%VMW_HOME%\jakarta-tomcat\common\lib\
-set JAVA_HOME=%VMW_HOME%\jre
-
-set RUNTIME_CLASSPATH=%JGAC_PATH%mscorlib.jar
-set RUNTIME_CLASSPATH=%RUNTIME_CLASSPATH%;%JGAC_PATH%System.jar
-set RUNTIME_CLASSPATH=%RUNTIME_CLASSPATH%;%JGAC_PATH%System.Xml.jar
-set RUNTIME_CLASSPATH=%RUNTIME_CLASSPATH%;%JGAC_PATH%System.Web.jar
-set RUNTIME_CLASSPATH=%RUNTIME_CLASSPATH%;%JGAC_PATH%System.Runtime.Serialization.Formatters.Soap.jar
-set RUNTIME_CLASSPATH=%RUNTIME_CLASSPATH%;%JGAC_PATH%Mainsoft.Web.jar
-rem set RUNTIME_CLASSPATH=%RUNTIME_CLASSPATH%;%JGAC_PATH%System.Drawing.jar
-set RUNTIME_CLASSPATH=%RUNTIME_CLASSPATH%;%JGAC_PATH%J2SE.Helpers.jar
-
-set FACES_PATH=%JGAC_PATH%myfaces\
-set RUNTIME_CLASSPATH=%RUNTIME_CLASSPATH%;%FACES_PATH%commons-beanutils-1.7.0.jar
-set RUNTIME_CLASSPATH=%RUNTIME_CLASSPATH%;%FACES_PATH%commons-codec-1.3.jar
-set RUNTIME_CLASSPATH=%RUNTIME_CLASSPATH%;%FACES_PATH%commons-collections-3.1.jar
-set RUNTIME_CLASSPATH=%RUNTIME_CLASSPATH%;%FACES_PATH%commons-digester-1.6.jar
-set RUNTIME_CLASSPATH=%RUNTIME_CLASSPATH%;%FACES_PATH%commons-el-1.0.jar
-set RUNTIME_CLASSPATH=%RUNTIME_CLASSPATH%;%FACES_PATH%commons-lang-2.1.jar
-set RUNTIME_CLASSPATH=%RUNTIME_CLASSPATH%;%FACES_PATH%commons-logging-1.0.4.jar
-set RUNTIME_CLASSPATH=%RUNTIME_CLASSPATH%;%FACES_PATH%jstl-1.1.0.jar
-set RUNTIME_CLASSPATH=%RUNTIME_CLASSPATH%;%FACES_PATH%myfaces-api-1.1.5.jar
-set RUNTIME_CLASSPATH=%RUNTIME_CLASSPATH%;%FACES_PATH%myfaces-impl-1.1.5.jar
-
-set RUNTIME_CLASSPATH=%RUNTIME_CLASSPATH%;%VMW_HOME%\java_refs\jdbc\derby.jar
-
-rem ./Test/mainsoft/MainsoftWebTest/bin/Debug_Java20/HtmlCompare.jar
-
-set RUNTIME_CLASSPATH=%RUNTIME_CLASSPATH%;Test\mainsoft\NunitWeb\NunitWeb\bin\Debug_Java20\NunitWeb.jar
-set RUNTIME_CLASSPATH=%RUNTIME_CLASSPATH%;Test\mainsoft\MainsoftWebTest\bin\Debug_Java20\HtmlCompare.jar
-
-set TOMCAT_CLASSPATH=%TOMCAT_PATH%servlet-api.jar
-set NUNIT_OPTIONS=/exclude=NotWorking
-
-if "%GH_VERSION%"=="" (
- set GH_VERSION=0_0_0_0
-)
-
-set COMMON_PREFIX=%TIMESTAMP%_%OUTPUT_FILE_PREFIX%.GH_%GH_VERSION%.1.%USERNAME%
-set GH_OUTPUT_XML=%COMMON_PREFIX%.xml
-set BUILD_LOG=%COMMON_PREFIX%.build.log
-set RUN_LOG=%COMMON_PREFIX%.run.log
-
-set NUNIT_PATH=..\..\nunit20\
-set NUNIT_CLASSPATH=%NUNIT_PATH%nunit-console\bin\%PROJECT_CONFIGURATION%\nunit.framework.jar
-set NUNIT_CLASSPATH=%NUNIT_CLASSPATH%;%NUNIT_PATH%nunit-console\bin\%PROJECT_CONFIGURATION%\nunit.util.jar
-set NUNIT_CLASSPATH=%NUNIT_CLASSPATH%;%NUNIT_PATH%nunit-console\bin\%PROJECT_CONFIGURATION%\nunit.core.jar
-set NUNIT_CLASSPATH=%NUNIT_CLASSPATH%;%NUNIT_PATH%nunit-console\bin\%PROJECT_CONFIGURATION%\nunit-console.jar
-set NUNIT_CLASSPATH=%NUNIT_CLASSPATH%;.
-set NUNIT_CLASSPATH=%NUNIT_CLASSPATH%;%TEST_ASSEMBLY%
-
-set CLASSPATH="%RUNTIME_CLASSPATH%;%NUNIT_CLASSPATH%;%TOMCAT_CLASSPATH%"
-
-IF "%BUILD_OPTION%"=="nobuild" GOTO RUN
-
-REM ********************************************************
-@echo Building GH solution...
-REM ********************************************************
-xcopy /y Test\mainsoft\NunitWeb\NunitWeb\Resources\*.as* Test\mainsoft\MainsoftWebApp20\
-xcopy /y Test\mainsoft\NunitWeb\NunitWeb\Resources\*.master Test\mainsoft\MainsoftWebApp20\
-xcopy /y Test\mainsoft\NunitWebResources\*.* Test\mainsoft\MainsoftWebApp20\
-pushd Test\mainsoft\MainsoftWebApp20\
-xcopy /y WizardTest.skin App_Themes\Theme1\
-xcopy /y Theme1.skin App_Themes\Theme1\
-xcopy /y Theme2.skin App_Themes\Theme2\
-xcopy /y ResolveUrl.ascx Folder\
-mkdir XXX
-for %%i in (*.as*) DO sed "s/CodeFile=/CodeBehind=/" %%i > XXX\%%i
-move /Y XXX\* .
-rmdir XXX
-popd
-
-msbuild %TEST_SOLUTION% /t:%BUILD_OPTION% /p:Configuration=%PROJECT_CONFIGURATION% >>%BUILD_LOG% 2<&1
-IF %ERRORLEVEL% NEQ 0 GOTO BUILD_EXCEPTION
-
-REM ********************************************************
-@echo Deploying GH solution to tomcat...
-REM ********************************************************
-IF NOT DEFINED VMW_BUILDER GOTO MSBUILD_DEPLOY
-set CATALINA_HOME=%VMW_HOME%\jakarta-tomcat
-call "%VMW_HOME%\jakarta-tomcat\bin\shutdown.bat"
-echo Waiting 5 sec for tomcat to stop....
-@ping 127.0.0.1 -n 5 -w 1000 > nul
-del /q "%VMW_HOME%\jakarta-tomcat\webapps\MainsoftWebApp20.war"
-rmdir /s /q "%VMW_HOME%\jakarta-tomcat\webapps\MainsoftWebApp20"
-xcopy /Y Test\mainsoft\MainsoftWebApp20\bin\%PROJECT_CONFIGURATION%\MainsoftWebApp20.war "%VMW_HOME%\jakarta-tomcat\webapps"
-call "%VMW_HOME%\jakarta-tomcat\bin\startup.bat"
-echo Waiting 5 sec for tomcat to start....
-@ping 127.0.0.1 -n 5 -w 1000 > nul
-GOTO AFTER_DEPLOY
-:MSBUILD_DEPLOY
-echo msbuild %DEPLOY_PROJECT% /t:Deploy /p:Configuration=%PROJECT_CONFIGURATION% /p:Platform=AnyCPU >>%BUILD_LOG%
-msbuild %DEPLOY_PROJECT% /t:Deploy /p:Configuration=%PROJECT_CONFIGURATION% /p:Platform=AnyCPU >>%BUILD_LOG% 2<&1
-:AFTER_DEPLOY
-
-IF %ERRORLEVEL% NEQ 0 GOTO BUILD_EXCEPTION
-
-IF "%BUILD_OPTION%"=="nobuild" GOTO RUN
-
-REM ********************************************************
-@echo Building NUnit solution...
-REM ********************************************************
-
-if "%NUNIT_BUILD%" == "DONE" goto NUNITSKIP
-msbuild %NUNIT_PATH%\nunit20.java.sln /t:%BUILD_OPTION% /p:configuration=%PROJECT_CONFIGURATION% >>%BUILD_LOG% 2<&1
-
-goto NUNITREADY
-
-:NUNITSKIP
-echo Skipping NUnit Build...
-
-:NUNITREADY
-set NUNIT_BUILD=DONE
-
-IF %ERRORLEVEL% NEQ 0 GOTO BUILD_EXCEPTION
-
-:RUN
-REM ********************************************************
-@echo Running GH tests...
-REM ********************************************************
-
-REM ********************************************************
-@echo Running fixture "%RUNNING_FIXTURE%"
-REM ********************************************************
-
-copy Test\bin\%PROJECT_CONFIGURATION%\%TEST_ASSEMBLY% .
-
-REM @echo on
-"%JAVA_HOME%\bin\java" -Xmx1024M -XX:MaxPermSize=128m -cp %CLASSPATH% NUnit.Console.ConsoleUi %TEST_ASSEMBLY% %NUNIT_OPTIONS% /xml=%GH_OUTPUT_XML% >>%RUN_LOG% 2<&1
-REM @echo off
-
-IF NOT DEFINED VMW_BUILDER GOTO DONT_SHUTDOWN_TOMCAT
-set CATALINA_HOME=%VMW_HOME%\jakarta-tomcat
-call "%VMW_HOME%\jakarta-tomcat\bin\shutdown.bat"
-:DONT_SHUTDOWN_TOMCAT
-
-REM ********************************************************
-@echo Build XmlTool
-REM ********************************************************
-set XML_TOOL_PATH=..\..\tools\mono-xmltool
-
-if "%XMLTOOL_BUILD%" == "DONE" goto XMLTOOLSKIP
-
-msbuild %XML_TOOL_PATH%\XmlTool20.csproj /t:%BUILD_OPTION% /p:Configuration=%PROJECT_CONFIGURATION% >>%BUILD_LOG% 2<&1
-
-IF %ERRORLEVEL% NEQ 0 GOTO BUILD_EXCEPTION
-
-goto XMLTOOLREADY
-
-:XMLTOOLSKIP
-echo Skipping XmlToll build...
-
-:XMLTOOLREADY
-set XMLTOOL_BUILD=DONE
-
-copy %XML_TOOL_PATH%\bin\%PROJECT_CONFIGURATION%\xmltool.exe .
-copy %XML_TOOL_PATH%\nunit_transform.xslt .
-
-REM ********************************************************
-@echo Analyze and print results
-REM ********************************************************
-@echo on
-xmltool.exe --transform nunit_transform.xslt %GH_OUTPUT_XML%
-@echo off
-
-:FINALLY
-GOTO END
-
-:ENVIRONMENT_EXCEPTION
-@echo This test requires environment variable VMW_HOME to be defined
-GOTO END
-
-:BUILD_EXCEPTION
-@echo Error in building solutions. See %BUILD_LOG% for details...
-REM EXIT 1
-GOTO END
-
-:RUN_EXCEPTION
-@echo Error in running fixture %RUNNING_FIXTURE%. See %RUN_LOG% for details...
-REM EXIT 1
-GOTO END
-
-:USAGE
-@echo Parameters: "[build|rebuild] <output_file_name_prefix> <test_fixture> <relative_Working_directory> <back_path (..\..\.....) >"
-GOTO END
-
-:END
-copy %RUN_LOG% ..\
-copy %BUILD_LOG% ..\
-copy %GH_OUTPUT_XML% ..\
-
-REM EXIT 0
diff --git a/mcs/class/System.Web/run-tests.bat b/mcs/class/System.Web/run-tests.bat
deleted file mode 100644
index 93f31a31029..00000000000
--- a/mcs/class/System.Web/run-tests.bat
+++ /dev/null
@@ -1,4 +0,0 @@
-@echo off
-pushd Test\mainsoft
-call run-test.bat
-popd