Browse Source

adjust tests for new message content when skipping

tags/mostlyLastEclipse2xTree_20040112
wisberg 20 years ago
parent
commit
7a01c23476

+ 2
- 2
testing-drivers/testdata/incremental/harness/selectionTest.xml View File

@@ -132,9 +132,9 @@
<run class="TestNoTester"/>
</ajc-test>

<ajc-test dir="." title="skip - local invalid option -source 1.4"
<ajc-test dir="." title="skip - local invalid option -source1.4"
keywords="requireKeyword,localInvalidOption" >
<compile files="TestNoTester.java" options="-source,1.4"/>
<compile files="TestNoTester.java" options="-source1.4"/>
<run class="TestNoTester"/>
</ajc-test>

+ 2
- 2
testing-drivers/testsrc/org/aspectj/testing/drivers/HarnessSelectionTest.java View File

@@ -164,7 +164,7 @@ public class HarnessSelectionTest extends TestCase {
"-ajctestRequireKeywords=eclipseOptionSkip"
};
Exp exp = new Exp(17, 0, 17, 0, 0, 0, 6);
checkSelection(SELECT, options, "no support in eclipse-based compiler", exp);
checkSelection(SELECT, options, "old ajc 1.0 option", exp);
}
public void testAjcEclipseConflict() {
@@ -185,7 +185,7 @@ public class HarnessSelectionTest extends TestCase {
"-ajctestSkipKeywords=skipUnenforcedAjcLimit"
};
Exp exp = new Exp(17, 3, 14, 3, 0, 0, 6);
checkSelection(SELECT, options, "conflict between arg=!eclipse and global=^eclipse", exp);
checkSelection(SELECT, options, "force conflict between eclipse", exp);
}
public void testSinglePR() {

Loading…
Cancel
Save