I'm trying to install Accumulo on a cluster running CDH4. I have checked out
trunk and followed the instructions here:
http://mail-archives.apache.org/mod_mbox/accumulo-user/201301.mbox/%3CCAF1jEfCp+kjqhVyH-Hb_HaNd=vhnhwl61wzeqscsvlphks9...@mail.gmail.com%3E
Here's what I get when I attempt to build:
mvn clean package -Dhadoop.profile=2.0 -Dhadoop.version=2.0.0-cdh4.2.0
-Dzookeeper.version=3.4.5 -e
...
[many lines omitted]
...
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO]
[INFO] Apache Accumulo ................................... SUCCESS [5.310s]
[INFO] Trace ............................................. SUCCESS [6.021s]
[INFO] Start ............................................. SUCCESS [32.580s]
[INFO] Fate .............................................. SUCCESS [2.713s]
[INFO] Core .............................................. FAILURE [51.833s]
[INFO] Server ............................................ SKIPPED
[INFO] Examples .......................................... SKIPPED
[INFO] Simple Examples ................................... SKIPPED
[INFO] Testing ........................................... SKIPPED
[INFO] Proxy ............................................. SKIPPED
[INFO] Assemble .......................................... SKIPPED
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 1:39.558s
[INFO] Finished at: Mon Apr 01 15:46:13 PDT 2013
[INFO] Final Memory: 75M/434M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal
org.apache.maven.plugins:maven-surefire-plugin:2.12:test (default-test) on
project accumulo-core: There are test failures.
[ERROR]
[ERROR] Please refer to
/home/d/apps/accumulo-1.6.0-bleeding-edge/trunk/core/target/surefire-reports
for the individual test results.
[ERROR] -> [Help 1]
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal
org.apache.maven.plugins:maven-surefire-plugin:2.12:test (default-test) on
project accumulo-core: There are test failures.
Please refer to
/home/d/apps/accumulo-1.6.0-bleeding-edge/trunk/core/target/surefire-reports
for the individual test results.
at
org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:213)
at
org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153)
at
org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145)
at
org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:84)
at
org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:59)
at
org.apache.maven.lifecycle.internal.LifecycleStarter.singleThreadedBuild(LifecycleStarter.java:183)
at
org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:161)
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:320)
at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:156)
at org.apache.maven.cli.MavenCli.execute(MavenCli.java:537)
at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:196)
at org.apache.maven.cli.MavenCli.main(MavenCli.java:141)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at
org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:290)
at
org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:230)
at
org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:409)
at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:352)
Caused by: org.apache.maven.plugin.MojoFailureException: There are test
failures.
Please refer to
/home/d/apps/accumulo-1.6.0-bleeding-edge/trunk/core/target/surefire-reports
for the individual test results.
at
org.apache.maven.plugin.surefire.SurefireHelper.reportExecution(SurefireHelper.java:83)
at
org.apache.maven.plugin.surefire.SurefirePlugin.writeSummary(SurefirePlugin.java:673)
at
org.apache.maven.plugin.surefire.SurefirePlugin.handleSummary(SurefirePlugin.java:647)
at
org.apache.maven.plugin.surefire.AbstractSurefireMojo.executeAfterPreconditionsChecked(AbstractSurefireMojo.java:137)
at
org.apache.maven.plugin.surefire.AbstractSurefireMojo.execute(AbstractSurefireMojo.java:98)
at
org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:101)
at
org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:209)
... 19 more
[ERROR]
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please
read the following articles:
[ERROR] [Help 1]
http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
[ERROR]
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR] mvn <goals> -rf :accumulo-core
the failure (in the "many lines omitted" section):
Running org.apache.accumulo.core.util.shell.ShellTest
Tests run: 9, Failures: 0, Errors: 8, Skipped: 0, Time elapsed: 0.032 sec <<<
FAILURE!
Anyone know what could be causing this?