I’m trying to bring
https://gwt-review.googlesource.com/#/c/3361/ up to date, and after rebasing and fixing a few whitespace nits I tried to run the tests by they failed. Concerned that I had broken something I backed off to current master, and ran tests again. First I did a clean dist-dev in the root directory, then simply compiling user tests, I get a failure:
[colin@modo user (master)]$ ant clean compile.tests
Buildfile: /Users/colin/Documents/idea/gwt/user/build.xml
clean:
[delete] Deleting directory /Users/colin/Documents/idea/gwt/build/out/user
compile.dev.tests:
compiler.standalone:
build.alldeps.jar:
compile:
-filter.props:
build:
compile.emma.if.enabled:
-compile.emma.if.enabled:
compile.tests:
[gwt.javac] Compiling 1 source file to /Users/colin/Documents/idea/gwt/build/out/dev/bin-test
compile.emma.if.enabled:
-compile.emma.if.enabled:
compile.tests:
[mkdir] Created dir: /Users/colin/Documents/idea/gwt/build/out/user/bin-test
[gwt.javac] Compiling 1514 source files to /Users/colin/Documents/idea/gwt/build/out/user/bin-test
[gwt.javac] /Users/colin/Documents/idea/gwt/user/test/com/google/gwt/dev/testdata/incrementalbuildsystem/super/com/google/gwt/dev/testdata/incrementalbuildsystem/ImmediateCompileFails.java:19: error: duplicate class: com.google.gwt.dev.testdata.incrementalbuildsystem.ImmediateCompileFails
[gwt.javac] public class ImmediateCompileFails {
[gwt.javac] ^
[gwt.javac] /Users/colin/Documents/idea/gwt/user/test/com/google/web/bindery/requestfactory/apt/RfValidatorTest.java:177: error: cannot find symbol
[gwt.javac] rfValidator.setClientOnly(clientOnly);
[gwt.javac] ^
[gwt.javac] symbol: method setClientOnly(boolean)
[gwt.javac] location: variable rfValidator of type RfValidator
[gwt.javac] Note: Some input files use or override a deprecated API.
[gwt.javac] Note: Recompile with -Xlint:deprecation for details.
[gwt.javac] Note: Some input files use unchecked or unsafe operations.
[gwt.javac] Note: Recompile with -Xlint:unchecked for details.
[gwt.javac] 2 errors
BUILD FAILED
/Users/colin/Documents/idea/gwt/user/build.xml:150: Compile failed; see the compiler error output for details.
Total time: 15 seconds
Anyone else seeing this, or is it likely a local env issue? I’ve confirmed that my tools/ dir is up to date, and I’m not sure what other local configuration might be required just to compile tests.