building gradles base-services fails at the following test, the others are
running
org.gradle.api.internal.IoActionsTest > can write text file with default
encoding FAILED
org.spockframework.runtime.SpockComparisonFailure at IoActionsTest.groovy:90
198 tests completed, 1 failed
:baseServices:test FAILED
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':baseServices:test'.
> There were failing tests. See the report at:
> file:///E:/gradle/gradle/subprojects/base-services/build/reports/tests/index.html
* Try:
Run with --info or --debug option to get more log output.
taking out the test in error and base-services are built OK.
// def "can write text file with default encoding"() {
// given:
// def file = tmp.file("foo.txt")
//
// when:
// writeTextFile(file, new Action() {
// void execute(writer) {
// writer.append("bar⌘")
// }
// })
//
// then:
// file.text == "bar⌘"
// }
using Windows Vista, NetBeans 7.2.1, JDK 1.6.0_30
and latest greates gradle sources just cloned down
also the gradle pluging is in use for NetBeans to show
and open a real gradle project.
Josef