#
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#
# @test
# @bug 4212732
# @summary Test handling of the Class-Path attribute in jar file manifests
# @author Martin Buchholz
#
# @run shell Class-Path.sh
# To run this test manually, simply do ./Class-Path.sh
set -u
}
#----------------------------------------------------------------
# Create mutually referential jar files
#----------------------------------------------------------------
package pkg;
import pkg.B;
public class A {
public static int f() { return B.g(); }
public static int g() { return 0; }
}
EOF
package pkg;
import pkg.A;
public class B {
public static int f() { return A.g(); }
public static int g() { return 0; }
}
EOF
import pkg.*;
public class Main {
public static void main(String []a) { System.exit(A.f() + B.f()); }
}
EOF
#----------------------------------------------------------------
# Jar file Class-Path expanded only for jars found on user class path
#----------------------------------------------------------------
echo "Main-Class: Main" >> MANIFEST.MF
#----------------------------------------------------------------
# Test new flag -e (application entry point)
#----------------------------------------------------------------
cat > Hello.java <<EOF
import pkg.*;
public class Hello {
public static void main(String []a) { System.out.println("Hello World!"); }
}
EOF
import pkg.*;
public class Bye {
public static void main(String []a) { System.out.println("Good Bye!"); }
}
EOF
# test jar creation without manifest
#
# test for overriding the manifest during jar creation
#
echo "Main-Class: Hello" >> MANIFEST.MF
# test for error: " 'e' flag and manifest with the 'Main-Class'
# attribute cannot be specified together, during creation
# test for overriding the manifest when updating the jar
#
# test for error: " 'e' flag and manifest with the 'Main-Class'
# attribute cannot be specified together, during update
# test jar updation when there are no inputfiles
#
# test creating jar when the to-be-archived files
# do not contain the specified main class, there is no check done
# for the presence of the main class, so the test will pass
#
# Jar creation and update when there is no manifest and inputfiles
# specified
# error: no such file or directory