Finishing setting up tests (compiler server).

This commit is contained in:
Dmitry Boulytchev (dboulytchev@gmail.com)
2012-02-02 01:13:16 +04:00
parent 24d086dedb
commit 7d194f269e
2643 changed files with 34 additions and 8 deletions
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
</web-app>
@@ -0,0 +1,12 @@
<testData>
<delete>
</delete>
<deleted_by_make>
<file path="classes/x/S.class" />
</deleted_by_make>
<recompile>
<file path="root/a.jsp" />
</recompile>
</testData>
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
</web-app>
@@ -0,0 +1,14 @@
<%--
Created by IntelliJ IDEA.
User: cdr
Date: Sep 17, 2004
Time: 2:53:58 PM
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@include file="dep.jsp" %>
<%@include file="dep2.jsp" %>
<html>
<head><title>Simple jsp page</title></head>
<body>Place your content here</body>
</html>
@@ -0,0 +1,36 @@
<?xml version="1.0" encoding="UTF-8"?>
<module version="4" relativePaths="true" type="JAVA_MODULE">
<component name="ModuleRootManager" />
<component name="NewModuleRootManager">
<output url="file://$MODULE_DIR$/classes" />
<exclude-output />
<exploded url="file://$MODULE_DIR$/exploded" />
<exclude-exploded />
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="module-library">
<library>
<CLASSES>
<root url="jar://$MODULE_DIR$/lib/xxx.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
</library>
</orderEntry>
<orderEntryProperties />
</component>
<component name="FacetManager">
<facet type="web" name="module">
<configuration>
<webroots>
<root url="file://$MODULE_DIR$/root" relative="/" />
</webroots>
<descriptors>
<deploymentDescriptor name="web.xml" url="file://$MODULE_DIR$/WEB-INF/web.xml" version="2.3" />
</descriptors>
</configuration>
</facet>
</component>
</module>
@@ -0,0 +1,7 @@
<%@ page import="x.S"%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<% S.f(); %>
AAAAA
@@ -0,0 +1,7 @@
package x;
//////////
public class S {
public static void f() {
}
}
@@ -0,0 +1,7 @@
package x;
////////// XXXXXXX
public class S {
public static void f() {
}
}