]> source.dussan.org Git - aspectj.git/commitdiff
Adjust expected error message in switch pattern tests after upstream typo fix
authorAlexander Kriegisch <Alexander@Kriegisch.name>
Fri, 31 Mar 2023 07:26:45 +0000 (09:26 +0200)
committerAlexander Kriegisch <Alexander@Kriegisch.name>
Sat, 24 Jun 2023 06:10:46 +0000 (13:10 +0700)
See:
https://github.com/eclipse-jdt/eclipse.jdt.core/issues/919
https://github.com/eclipse-jdt/eclipse.jdt.core/commit/b681dfb5
Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
tests/src/test/resources/org/aspectj/systemtest/ajc1919/ajc1919.xml
tests/src/test/resources/org/aspectj/systemtest/ajc1920/ajc1920.xml
tests/src/test/resources/org/aspectj/systemtest/ajc198/ajc198.xml
tests/src/test/resources/org/aspectj/systemtest/ajc199/ajc199.xml

index d31b35aa192ca5cd29b1dce4b31bf8d871537830..f8bccce640ae5f61304b1a575ad184ed84cc4a6d 100644 (file)
@@ -68,7 +68,7 @@
        <ajc-test dir="features198/java17" vm="19" title="switch pattern matching error">
                <compile files="SwitchPatternError.java" options="--enable-preview -19">
                        <!-- TODO: Add correct compiler error message, as soon as JDT Core supports it -->
-                       <message kind="error" file="SwitchPatternError.java" text="This case label is dominated by one of the preceding case label"/>
+                       <message kind="error" file="SwitchPatternError.java" text="This case label is dominated by one of the preceding case labels"/>
                </compile>
        </ajc-test>
 
@@ -76,7 +76,7 @@
        <ajc-test dir="features1919/java19" vm="19" title="switch pattern matching preview 3 error 1">
                <compile files="SwitchPatternPreview3Error1.java" options="--enable-preview -19">
                        <!-- TODO: Add correct compiler error message, as soon as JDT Core supports it -->
-                       <message kind="error" file="SwitchPatternPreview3Error1.java" text="This case label is dominated by one of the preceding case label"/>
+                       <message kind="error" file="SwitchPatternPreview3Error1.java" text="This case label is dominated by one of the preceding case labels"/>
                </compile>
        </ajc-test>
 
@@ -84,7 +84,7 @@
        <ajc-test dir="features1919/java19" vm="19" title="switch pattern matching preview 3 error 2">
                <compile files="SwitchPatternPreview3Error2.java" options="--enable-preview -19">
                        <!-- TODO: Add correct compiler error message, as soon as JDT Core supports it -->
-                       <message kind="error" file="SwitchPatternPreview3Error2.java" text="This case label is dominated by one of the preceding case label"/>
+                       <message kind="error" file="SwitchPatternPreview3Error2.java" text="This case label is dominated by one of the preceding case labels"/>
                </compile>
        </ajc-test>
 
index 4d2df9f39f0121c2bca31d51e6ecd7e395b5676e..8f566b6437a8fcacc5a74d91e6d27e809dbd2a58 100644 (file)
@@ -42,7 +42,7 @@
        <ajc-test dir="features1920/java20" vm="20" title="switch pattern matching preview 4 error">
                <compile files="SwitchPatternPreview4Error.java" options="--enable-preview -20">
                        <!-- TODO: Add correct compiler error message, as soon as JDT Core supports it -->
-                       <message kind="error" file="SwitchPatternPreview4Error.java" text="This case label is dominated by one of the preceding case label"/>
+                       <message kind="error" file="SwitchPatternPreview4Error.java" text="This case label is dominated by one of the preceding case labels"/>
                </compile>
        </ajc-test>
 
@@ -77,7 +77,7 @@
        <ajc-test dir="features198/java17" vm="20" title="switch pattern matching error">
                <compile files="SwitchPatternError.java" options="--enable-preview -20">
                        <!-- TODO: Add correct compiler error message, as soon as JDT Core supports it -->
-                       <message kind="error" file="SwitchPatternError.java" text="This case label is dominated by one of the preceding case label"/>
+                       <message kind="error" file="SwitchPatternError.java" text="This case label is dominated by one of the preceding case labels"/>
                </compile>
        </ajc-test>
 
@@ -85,7 +85,7 @@
        <ajc-test dir="features1919/java19" vm="20" title="switch pattern matching preview 3 error 1">
                <compile files="SwitchPatternPreview3Error1.java" options="--enable-preview -20">
                        <!-- TODO: Add correct compiler error message, as soon as JDT Core supports it -->
-                       <message kind="error" file="SwitchPatternPreview3Error1.java" text="This case label is dominated by one of the preceding case label"/>
+                       <message kind="error" file="SwitchPatternPreview3Error1.java" text="This case label is dominated by one of the preceding case labels"/>
                </compile>
        </ajc-test>
 
@@ -93,7 +93,7 @@
        <ajc-test dir="features1919/java19" vm="20" title="switch pattern matching preview 3 error 2">
                <compile files="SwitchPatternPreview3Error2.java" options="--enable-preview -20">
                        <!-- TODO: Add correct compiler error message, as soon as JDT Core supports it -->
-                       <message kind="error" file="SwitchPatternPreview3Error2.java" text="This case label is dominated by one of the preceding case label"/>
+                       <message kind="error" file="SwitchPatternPreview3Error2.java" text="This case label is dominated by one of the preceding case labels"/>
                </compile>
        </ajc-test>
 
index 85bd872b362cb752bda863e4c954078a6486498f..be4957134977f36d90ced9e8974ed3d0a0d7845f 100644 (file)
@@ -49,7 +49,7 @@
   <ajc-test dir="features198/java17" vm="17" title="switch pattern matching error">
     <compile files="SwitchPatternError.java" options="--enable-preview -17">
       <!-- TODO: Add correct compiler error message, as soon as JDT Core supports it -->
-      <message kind="error" file="SwitchPatternError.java" text="This case label is dominated by one of the preceding case label"/>
+      <message kind="error" file="SwitchPatternError.java" text="This case label is dominated by one of the preceding case labels"/>
     </compile>
   </ajc-test>
 
index 5488671f5531c85b8851143e137172ce53cbf595..d8868ca2240eb6628f000b55551b1b47495e485d 100644 (file)
@@ -7,7 +7,7 @@
        <ajc-test dir="features198/java17" vm="18" title="switch pattern matching error">
                <compile files="SwitchPatternError.java" options="--enable-preview -18">
                        <!-- TODO: Add correct compiler error message, as soon as JDT Core supports it -->
-                       <message kind="error" file="SwitchPatternError.java" text="This case label is dominated by one of the preceding case label"/>
+                       <message kind="error" file="SwitchPatternError.java" text="This case label is dominated by one of the preceding case labels"/>
                </compile>
        </ajc-test>
 
@@ -57,7 +57,7 @@
        <ajc-test dir="features199/java18" vm="18" title="switch pattern matching preview 2 error 1">
                <compile files="SwitchPatternPreview2Error1.java" options="--enable-preview -18">
                        <!-- TODO: Add correct compiler error message, as soon as JDT Core supports it -->
-                       <message kind="error" file="SwitchPatternPreview2Error1.java" text="This case label is dominated by one of the preceding case label"/>
+                       <message kind="error" file="SwitchPatternPreview2Error1.java" text="This case label is dominated by one of the preceding case labels"/>
                </compile>
        </ajc-test>
 
@@ -65,7 +65,7 @@
        <ajc-test dir="features199/java18" vm="18" title="switch pattern matching preview 2 error 2">
                <compile files="SwitchPatternPreview2Error2.java" options="--enable-preview -18">
                        <!-- TODO: Add correct compiler error message, as soon as JDT Core supports it -->
-                       <message kind="error" file="SwitchPatternPreview2Error2.java" text="This case label is dominated by one of the preceding case label"/>
+                       <message kind="error" file="SwitchPatternPreview2Error2.java" text="This case label is dominated by one of the preceding case labels"/>
                </compile>
        </ajc-test>