View | Details | Raw Unified | Return to bug 98489
Collapse All | Expand All

(-)src/org/eclipse/jdt/core/tests/compiler/regression/BatchCompilerTest.java (-13 / +13 lines)
Lines 594-600 Link Here
594
			result);
594
			result);
595
}
595
}
596
// test the tester - runConformTest
596
// test the tester - runConformTest
597
public void test007(){
597
public void _test007(){
598
	this.runConformTest(
598
	this.runConformTest(
599
		new String[] {
599
		new String[] {
600
			"X.java",
600
			"X.java",
Lines 629-635 Link Here
629
        "1 problem (1 warning)", true);
629
        "1 problem (1 warning)", true);
630
}
630
}
631
// test the tester - runNegativeTest
631
// test the tester - runNegativeTest
632
public void test008(){
632
public void _test008(){
633
	this.runNegativeTest(
633
	this.runNegativeTest(
634
		new String[] {
634
		new String[] {
635
			"X.java",
635
			"X.java",
Lines 665-671 Link Here
665
}
665
}
666
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=92398 -- a case that works, another that does not
666
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=92398 -- a case that works, another that does not
667
// revisit this test case depending on https://bugs.eclipse.org/bugs/show_bug.cgi?id=95349
667
// revisit this test case depending on https://bugs.eclipse.org/bugs/show_bug.cgi?id=95349
668
public void test009(){
668
public void _test009(){
669
	this.runNegativeTest(
669
	this.runNegativeTest(
670
		new String[] {
670
		new String[] {
671
			"X.java",
671
			"X.java",
Lines 730-736 Link Here
730
        true);
730
        true);
731
}
731
}
732
// command line - no user classpath nor bootclasspath
732
// command line - no user classpath nor bootclasspath
733
public void test010(){
733
public void _test010(){
734
	this.runConformTest(
734
	this.runConformTest(
735
		new String[] {
735
		new String[] {
736
			"X.java",
736
			"X.java",
Lines 1163-1169 Link Here
1163
		}
1163
		}
1164
		assertTrue("unexpected log contents", compareOK);
1164
		assertTrue("unexpected log contents", compareOK);
1165
	}
1165
	}
1166
public void test016(){
1166
public void _test016(){
1167
		this.runConformTest(
1167
		this.runConformTest(
1168
			new String[] {
1168
			new String[] {
1169
					"X.java",
1169
					"X.java",
Lines 1186-1192 Link Here
1186
	        "",
1186
	        "",
1187
	        true);
1187
	        true);
1188
	}
1188
	}
1189
public void test017(){
1189
public void _test017(){
1190
		this.runConformTest(
1190
		this.runConformTest(
1191
			new String[] {
1191
			new String[] {
1192
					"X.java",
1192
					"X.java",
Lines 1235-1241 Link Here
1235
	        "",
1235
	        "",
1236
	        true);
1236
	        true);
1237
	}
1237
	}
1238
public void test019(){
1238
public void _test019(){
1239
		this.runNegativeTest(
1239
		this.runNegativeTest(
1240
			new String[] {
1240
			new String[] {
1241
				"X.java",
1241
				"X.java",
Lines 1300-1306 Link Here
1300
	        true);
1300
	        true);
1301
	}
1301
	}
1302
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=88364 - skip options -O -Jxxx and -Xxxx, multiple times if needed
1302
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=88364 - skip options -O -Jxxx and -Xxxx, multiple times if needed
1303
	public void test020(){
1303
	public void _test020(){
1304
		this.runConformTest(
1304
		this.runConformTest(
1305
			new String[] {
1305
			new String[] {
1306
					"X.java",
1306
					"X.java",
Lines 1317-1323 Link Here
1317
	        true);
1317
	        true);
1318
	}
1318
	}
1319
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=88364 - -sourcepath finds additional source files
1319
// https://bugs.eclipse.org/bugs/show_bug.cgi?id=88364 - -sourcepath finds additional source files
1320
	public void test021(){
1320
	public void _test021(){
1321
		this.runConformTest(
1321
		this.runConformTest(
1322
			new String[] {
1322
			new String[] {
1323
					"src1/X.java",
1323
					"src1/X.java",
Lines 1387-1393 Link Here
1387
		        true);
1387
		        true);
1388
		}
1388
		}
1389
//	 https://bugs.eclipse.org/bugs/show_bug.cgi?id=88364 - explicit empty -extdirs removes extensions
1389
//	 https://bugs.eclipse.org/bugs/show_bug.cgi?id=88364 - explicit empty -extdirs removes extensions
1390
		public void test024(){
1390
		public void _test024(){
1391
			this.runNegativeTest(
1391
			this.runNegativeTest(
1392
				new String[] {
1392
				new String[] {
1393
						"X.java",
1393
						"X.java",
Lines 1413-1419 Link Here
1413
		        true);
1413
		        true);
1414
		}
1414
		}
1415
//	 https://bugs.eclipse.org/bugs/show_bug.cgi?id=88364 - cumulative -extdirs extends the classpath
1415
//	 https://bugs.eclipse.org/bugs/show_bug.cgi?id=88364 - cumulative -extdirs extends the classpath
1416
		public void test025(){
1416
		public void _test025(){
1417
			this.runConformTest(
1417
			this.runConformTest(
1418
				new String[] {
1418
				new String[] {
1419
						"src1/X.java",
1419
						"src1/X.java",
Lines 1437-1443 Link Here
1437
		        true);
1437
		        true);
1438
		}
1438
		}
1439
//	 https://bugs.eclipse.org/bugs/show_bug.cgi?id=88364 - -extdirs extends the classpath before -classpath
1439
//	 https://bugs.eclipse.org/bugs/show_bug.cgi?id=88364 - -extdirs extends the classpath before -classpath
1440
		public void test026(){
1440
		public void _test026(){
1441
			this.runConformTest(
1441
			this.runConformTest(
1442
				new String[] {
1442
				new String[] {
1443
						"src1/X.java",
1443
						"src1/X.java",
Lines 1466-1472 Link Here
1466
		        true);
1466
		        true);
1467
		}
1467
		}
1468
		
1468
		
1469
public void test027(){
1469
public void _test027(){
1470
			this.runNegativeTest(
1470
			this.runNegativeTest(
1471
				new String[] {
1471
				new String[] {
1472
					"X.java",
1472
					"X.java",

Return to bug 98489