Build failed in Jenkins: IcedTea7TargetTesting #1293

Hudson Admin gnu.andrew at redhat.com
Thu May 16 01:57:38 PDT 2013


See <http://toadeater.yyz.redhat.com:8080/job/IcedTea7TargetTesting/1293/changes>

Changes:

[Andrew John Hughes <gnu_andrew at member.fsf.org>] PR716: IcedTea7 should bootstrap with IcedTea6

2013-05-15  Andrew John Hughes  <gnu.andrew at member.fsf.org>

	PR716: IcedTea7 should bootstrap with IcedTea6
	* NEWS: Updated.
	* Makefile.am:
	(JDK_CHANGESET): Bring in CertificateRevokedException
	ambiguity fix.
	(JDK_SHA256SUM): Likewise.
	(ICEDTEA_BOOT_PATCHES): Rename ecj-fphexconstants
	to fphexconstants.  Make xbootclasspath and the new
	bootstrap-tools split-off patch conditional.
	* INSTALL: Document --disable-bootstrap-tools.
	* acinclude.m4:
	(IT_BYTECODE7_CHECK): Use AC_DEFUN_ONCE.
	(IT_USE_BOOTSTRAP_TOOLS): Add --disable-bootstrap-tools
	to decide whether to use the boot javac/javah or the
	one built as part of langtools.  Defaults to on for
	bootstrap tools that support Java 1.7.
	(IT_CHECK_FOR_XBOOTCLASSPATH): Check whether java
	can be passed -Xbootclasspath/p to prepend a path
	to the bootclasspath or not.
	* configure.ac: Invoke the new macros.
	* javac.in: Handle -Xbootclasspath/p by prepending
	its value to the bootclasspath option used to ecj.
	* patches/boot/bootstrap-tools.patch:
	Split from xbootclasspath.patch.  Uses the bootstrap
	javac and javah rather than the langtools one for
	CORBA and JDK.
	* patches/boot/corba-dependencies.patch:
	Include the langtools source directory on the sourcepath.
	* patches/boot/fphexconstants.patch:
	Replace additional cases in java.lang.Math (needed
	when using javac via gcj).
	* patches/boot/icedteart.patch:
	Split from xbootclasspath.patch; the parts that
	extend the classpath.  The java.text Makefile changes
	are changed to use -Xbootclasspath/a rather than a
	complete rewrite.
	* patches/boot/jaxws-jdk-dependency.patch:
	Include the generated sources on the sourcepath.
	* patches/boot/xbootclasspath.patch:
	Revised version of the java.text Makefile changes
	that replaces the use of -Xbootclasspath for those
	VMs that don't support it.

------------------------------------------
[...truncated 2428 lines...]
52. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 90)
	srcDir = new File(args[0]);
	             ^^^^
File cannot be resolved to a type
----------
53. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 91)
	processFile(srcDir, args[1], args[2], args[3]);
	            ^^^^^^
File cannot be resolved to a type
----------
54. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 92)
	logger.info("Waiting for rewrites to complete...");
	^^^^^^
Logger cannot be resolved to a type
----------
55. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 93)
	executor.shutdown();
	^^^^^^^^
ExecutorService cannot be resolved to a type
----------
56. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 94)
	executor.awaitTermination(1, TimeUnit.MINUTES);
	^^^^^^^^
ExecutorService cannot be resolved to a type
----------
57. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 94)
	executor.awaitTermination(1, TimeUnit.MINUTES);
	                             ^^^^^^^^
TimeUnit cannot be resolved
----------
58. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 95)
	logger.info("Checking for errors...");
	^^^^^^
Logger cannot be resolved to a type
----------
59. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 97)
	for (Future<Void> f : tasks)
	     ^^^^^^
Future cannot be resolved to a type
----------
60. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 97)
	for (Future<Void> f : tasks)
	            ^^^^
Void cannot be resolved to a type
----------
61. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 97)
	for (Future<Void> f : tasks)
	                      ^^^^^
List<Future<Void>> cannot be resolved to a type
----------
62. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 99)
	logger.info("Rewriting completed successfully.");
	^^^^^^
Logger cannot be resolved to a type
----------
63. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 102)
	private static void processFile(File srcDir, String destDir,
	                                ^^^^
File cannot be resolved to a type
----------
64. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 102)
	private static void processFile(File srcDir, String destDir,
	                                             ^^^^^^
String cannot be resolved to a type
----------
65. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 103)
	String oldPkg, String newPkg)
	^^^^^^
String cannot be resolved to a type
----------
66. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 103)
	String oldPkg, String newPkg)
	               ^^^^^^
String cannot be resolved to a type
----------
67. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 107)
	logger.fine("Recursing into " + srcDir);
	^^^^^^
Logger cannot be resolved to a type
----------
68. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 108)
	for (File f : srcDir.listFiles())
	     ^^^^
File cannot be resolved to a type
----------
69. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 113)
	logger.info("Processing class " + srcDir);
	^^^^^^
Logger cannot be resolved to a type
----------
70. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 114)
	tasks.add(executor.submit(new ClassRewriter(srcDir, destDir,
	^^^^^
List<Future<Void>> cannot be resolved to a type
----------
71. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 114)
	tasks.add(executor.submit(new ClassRewriter(srcDir, destDir,
	          ^^^^^^^^
ExecutorService cannot be resolved to a type
----------
72. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 118)
	logger.fine("Skipping " + srcDir);
	^^^^^^
Logger cannot be resolved to a type
----------
73. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 124)
	private final File classFile;
	              ^^^^
File cannot be resolved to a type
----------
74. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 129)
	private final String destDir;
	              ^^^^^^
String cannot be resolved to a type
----------
75. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 134)
	private final String oldPackage;
	              ^^^^^^
String cannot be resolved to a type
----------
76. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 139)
	private final String newPackage;
	              ^^^^^^
String cannot be resolved to a type
----------
77. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 141)
	public ClassRewriter(File classFile, String destDir,
                       String oldPackage, String newPackage)
	       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Implicit super constructor Object() is undefined. Must explicitly invoke another constructor
----------
78. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 141)
	public ClassRewriter(File classFile, String destDir,
	                     ^^^^
File cannot be resolved to a type
----------
79. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 141)
	public ClassRewriter(File classFile, String destDir,
	                                     ^^^^^^
String cannot be resolved to a type
----------
80. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 142)
	String oldPackage, String newPackage)
	^^^^^^
String cannot be resolved to a type
----------
81. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 142)
	String oldPackage, String newPackage)
	                   ^^^^^^
String cannot be resolved to a type
----------
82. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 144)
	this.classFile = classFile;
	^^^^^^^^^^^^^^
File cannot be resolved to a type
----------
83. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 145)
	this.oldPackage = oldPackage;
	^^^^^^^^^^^^^^^
String cannot be resolved to a type
----------
84. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 146)
	this.newPackage = newPackage;
	^^^^^^^^^^^^^^^
String cannot be resolved to a type
----------
85. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 147)
	this.destDir = destDir;
	^^^^^^^^^^^^
String cannot be resolved to a type
----------
86. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 150)
	public Void call()
	       ^^^^
Void cannot be resolved to a type
----------
87. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 151)
	throws IOException
	       ^^^^^^^^^^^
IOException cannot be resolved to a type
----------
88. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 153)
	String slashedOldPackage = oldPackage.replace(".", "/");
	^^^^^^
String cannot be resolved to a type
----------
89. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 153)
	String slashedOldPackage = oldPackage.replace(".", "/");
	                           ^^^^^^^^^^
String cannot be resolved to a type
----------
90. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 154)
	String slashedNewPackage = newPackage.replace(".", "/");
	^^^^^^
String cannot be resolved to a type
----------
91. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 154)
	String slashedNewPackage = newPackage.replace(".", "/");
	                           ^^^^^^^^^^
String cannot be resolved to a type
----------
92. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 155)
	String dollaredOldPackage = oldPackage.replace(".", "$");
	^^^^^^
String cannot be resolved to a type
----------
93. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 155)
	String dollaredOldPackage = oldPackage.replace(".", "$");
	                            ^^^^^^^^^^
String cannot be resolved to a type
----------
94. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 156)
	String dollaredNewPackage = newPackage.replace(".", "$");
	^^^^^^
String cannot be resolved to a type
----------
95. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 156)
	String dollaredNewPackage = newPackage.replace(".", "$");
	                            ^^^^^^^^^^
String cannot be resolved to a type
----------
96. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 158)
	File outClass =
	^^^^
File cannot be resolved to a type
----------
97. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 159)
	new File(classFile.getPath().replace(srcDir.getPath() + File.separator,
	    ^^^^
File cannot be resolved to a type
----------
98. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 159)
	new File(classFile.getPath().replace(srcDir.getPath() + File.separator,
	         ^^^^^^^^^
File cannot be resolved to a type
----------
99. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 159)
	new File(classFile.getPath().replace(srcDir.getPath() + File.separator,
	                                     ^^^^^^
File cannot be resolved to a type
----------
100. ERROR in ./rewriter/com/redhat/rewriter/ClassRewriter.java (at line 159)
	new File(classFile.getPath().replace(srcDir.getPath() + File.separator,
	                                                        ^^^^
File cannot be resolved
----------
100 problems (100 errors)make: *** [stamps/rewriter.stamp] Error 255
+ exit 1
Build step 'Execute shell' marked build as failure


More information about the icedtea-test mailing list