--- /dev/null
+/*******************************************************************************
+ * Copyright (c) 2004 IBM
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Common Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/cpl-v10.html
+ *
+ * Contributors:
+ * Andy Clement - initial API and implementation
+ *******************************************************************************/
+package org.aspectj.systemtest.ajc150;
+
+import java.io.File;
+
+import junit.framework.Test;
+
+import org.aspectj.testing.XMLBasedAjcTestCase;
+
+public class SuppressedWarnings extends XMLBasedAjcTestCase {
+
+ public static Test suite() {
+ return XMLBasedAjcTestCase.loadSuite(SuppressedWarnings.class);
+ }
+
+ protected File getSpecFile() {
+ return new File("../tests/src/org/aspectj/systemtest/ajc150/ajc150.xml");
+ }
+
+ // Check basic suppression
+ public void testSuppression1() {
+ runTest("suppressing non-matching advice warnings");
+ }
+
+ // Checks source contexts aren't put out incorrectly
+ // NOTE: Source contexts only come out if the primary source location in a message
+ // matches the file currently being dealt with. Because advice not matching
+ // messages come out at the last stage of compilation, you currently only
+ // get sourcecontext for advice not matching messages that point to places in
+ // the last file being processed. You do get source locations in all cases -
+ // you just don't always get context, we could revisit this sometime...
+ // (see bug 62073 reference in WeaverMessageHandler.handleMessage())
+ public void testSuppression2() {
+ runTest("suppressing non-matching advice warnings when multiple source files involved");
+ }
+
+}
\ No newline at end of file
<message kind="weave" text="Type 'SimpleVarargs' (SimpleVarargs.java:27) advised by before advice from 'VarargsAspect06' (VarargsAspect06.aj:3)"/>
</compile>
</ajc-test>
+
+ <ajc-test dir="java5/suppressedWarnings" vm="1.5" title="suppressing non-matching advice warnings">
+ <compile files="Suppression1.aj" options="-1.5,-showWeaveInfo">
+ <message kind="warning" line="13"/>
+ <message kind="warning" line="21"/>
+ </compile>
+ </ajc-test>
+
+ <ajc-test dir="java5/suppressedWarnings" vm="1.5" title="suppressing non-matching advice warnings when multiple source files involved">
+ <compile files="A.java,A1.aj,A2.aj,A3.aj" options="-1.5,-showWeaveInfo">
+ <message kind="warning" line="4" file="A1.aj"/>
+ <message kind="warning" line="4" file="A2.aj"/>
+ <message kind="warning" line="11" file="A2.aj"/>
+ <message kind="warning" line="4" file="A3.aj"/>
+ <message kind="warning" line="11" file="A3.aj"/>
+ </compile>
+ </ajc-test>
<!-- ======================================================================================= -->
<!-- annotated aspect members -->