Skip to content
This repository was archived by the owner on Nov 15, 2022. It is now read-only.

Commit ac6c315

Browse files
shingwaichanyaminikb
authored andcommitted
clean up workspace (#21751)
* remove unnecessary files in classes directory * update .gitignore files * do not delete README_Embedded.txt * rename to consistence test names
1 parent 701c261 commit ac6c315

File tree

18 files changed

+19
-8
lines changed

18 files changed

+19
-8
lines changed

.gitignore

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
1-
target
1+
*.ipr
2+
*.iml
3+
*.iws
4+
*.swp
5+
*~
6+
*.output
7+
*.class
8+
target/
9+
.idea
10+
nbactions.xml
211
.classpath
312
.project
413
.settings/
5-
target/
6-
**/*.output
7-
**/*.class
8-
**/.idea
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
RepRunConf.txt
2+
/build/
3+
/count.txt
4+
/test_results.html
5+
/test_results.xml
6+
/test_resultsValid.xml

main/appserver/tests/appserv-tests/devtests/web/build.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -636,7 +636,7 @@
636636
</delete>
637637
<delete>
638638
<fileset dir="." includes="*.output"/>
639-
<fileset dir="." includes="*.txt"/>
639+
<fileset dir="." includes="*.txt" excludes="README*.txt"/>
640640
</delete>
641641
</target>
642642

main/appserver/tests/appserv-tests/devtests/web/servlet-4.0/contextCharEncoding/WebTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public class WebTest {
5353
private static SimpleReporterAdapter stat
5454
= new SimpleReporterAdapter("appserv-tests");
5555

56-
private static final String TEST_NAME = "context-char-encoding";
56+
private static final String TEST_NAME = "servlet-4.0-context-char-encoding";
5757
private static final String JCHARSET = "Shift_JIS";
5858
private static final String JSTR = "\u3068\u4eba\u6587";
5959
private static final String EXPECTED_RESPONSE = "true:" + JSTR;

main/appserver/tests/appserv-tests/devtests/web/servlet-4.0/reqResEncoding/WebTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public class WebTest {
5353
private static SimpleReporterAdapter stat
5454
= new SimpleReporterAdapter("appserv-tests");
5555

56-
private static final String TEST_NAME = "req-res-encoding";
56+
private static final String TEST_NAME = "servlet-4.0-req-res-encoding";
5757
private static final String JCHARSET = "Shift_JIS";
5858
private static final String JSTR = "\u3068\u4eba\u6587";
5959
private static final String EXPECTED_RESPONSE = "true:" + JSTR;

main/appserver/tests/quicklook/classes/EJB_Singleton/app/META-INF/.gitkeep_empty_dir

Whitespace-only changes.

main/appserver/tests/quicklook/classes/EJB_sfulnoi/app/META-INF/.gitkeep_empty_dir

Whitespace-only changes.

main/appserver/tests/quicklook/classes/JMS_Injection/app/META-INF/.gitkeep_empty_dir

Whitespace-only changes.

main/appserver/tests/quicklook/classes/app_perms/app/META-INF/.gitkeep_empty_dir

Whitespace-only changes.

main/appserver/tests/quicklook/classes/basicosgi/app/META-INF/.gitkeep_empty_dir

Whitespace-only changes.

0 commit comments

Comments
 (0)