NASAWorldWind / WorldWindAndroid

The NASA WorldWind Java SDK for Android (WWA) includes the library, examples and tutorials for building 3D virtual globe applications for phones and tablets.
Other
272 stars 125 forks source link

Master doesn't build (failing unit tests) #2

Closed spyhunter99 closed 8 years ago

spyhunter99 commented 8 years ago

Sorry for posting here, but there's no instructions for creating an account on the JIRA instance

:worldwind:prepareDebugUnitTestDependencies
:worldwind:compileDebugUnitTestJavaWithJavac
/Users/alex/projects/WorldWindAndroid/worldwind/src/test/java/gov/nasa/worldwind/geom/FrustumTest.java:66: error: no suitable constructor found for Frustum(Plane,Plane,Plane,Plane,Plane,Plane)
        Frustum frustum = new Frustum(left, right, bottom, top, near, far);
                          ^
    constructor Frustum.Frustum(Plane,Plane,Plane,Plane,Plane,Plane,Viewport) is not applicable
      (actual and formal argument lists differ in length)
    constructor Frustum.Frustum() is not applicable
      (actual and formal argument lists differ in length)
/Users/alex/projects/WorldWindAndroid/worldwind/src/test/java/gov/nasa/worldwind/geom/FrustumTest.java:85: error: no suitable constructor found for Frustum(Plane,Plane,Plane,Plane,Plane,Plane)
        Frustum frustum = new Frustum(left, right, bottom, top, near, far);
                          ^
    constructor Frustum.Frustum(Plane,Plane,Plane,Plane,Plane,Plane,Viewport) is not applicable
      (actual and formal argument lists differ in length)
    constructor Frustum.Frustum() is not applicable
      (actual and formal argument lists differ in length)
/Users/alex/projects/WorldWindAndroid/worldwind/src/test/java/gov/nasa/worldwind/geom/FrustumTest.java:102: error: cannot find symbol
        f.setToProjectionMatrix(m);
         ^
  symbol:   method setToProjectionMatrix(Matrix4)
  location: variable f of type Frustum
/Users/alex/projects/WorldWindAndroid/worldwind/src/test/java/gov/nasa/worldwind/geom/FrustumTest.java:146: error: cannot find symbol
        f.transformByMatrix(m);
         ^
  symbol:   method transformByMatrix(Matrix4)
  location: variable f of type Frustum
/Users/alex/projects/WorldWindAndroid/worldwind/src/test/java/gov/nasa/worldwind/geom/FrustumTest.java:176: error: no suitable constructor found for Frustum(Plane,Plane,Plane,Plane,Plane,Plane)
        Frustum frustum = new Frustum(left, right, bottom, top, near, far);
                          ^
    constructor Frustum.Frustum(Plane,Plane,Plane,Plane,Plane,Plane,Viewport) is not applicable
      (actual and formal argument lists differ in length)
    constructor Frustum.Frustum() is not applicable
      (actual and formal argument lists differ in length)
/Users/alex/projects/WorldWindAndroid/worldwind/src/test/java/gov/nasa/worldwind/geom/FrustumTest.java:178: error: cannot find symbol
        frustum.normalize();
               ^
  symbol:   method normalize()
  location: variable frustum of type Frustum
6 errors
:worldwind:compileDebugUnitTestJavaWithJavac FAILED

FAILURE: Build failed with an exception.
pdavidc commented 8 years ago

Thanks. Were aware of the issue and have already pushed a fix to the develop branch. See commit 7b58a27. We'll be publishing a hot fix this week.

spyhunter99 commented 8 years ago

roger, thanks!