{
  "_class" : "hudson.matrix.MatrixRun",
  "actions" : [
    {
      
    },
    {
      "_class" : "hudson.model.CauseAction",
      "causes" : [
        {
          "_class" : "hudson.model.Cause$UpstreamCause",
          "shortDescription" : "Started by upstream project \"jogl\" build number 880",
          "upstreamBuild" : 880,
          "upstreamProject" : "jogl",
          "upstreamUrl" : "job/jogl/"
        }
      ]
    },
    {
      "_class" : "hudson.plugins.git.util.BuildData",
      "buildsByBranchName" : {
        "origin/master" : {
          "_class" : "hudson.plugins.git.util.Build",
          "buildNumber" : 880,
          "buildResult" : None,
          "marked" : {
            "SHA1" : "3ce0aa6e36d9474ac3105cab491a60327860757d",
            "branch" : [
              {
                "SHA1" : "3ce0aa6e36d9474ac3105cab491a60327860757d",
                "name" : "origin/master"
              }
            ]
          },
          "revision" : {
            "SHA1" : "3ce0aa6e36d9474ac3105cab491a60327860757d",
            "branch" : [
              {
                "SHA1" : "3ce0aa6e36d9474ac3105cab491a60327860757d",
                "name" : "origin/master"
              }
            ]
          }
        }
      },
      "lastBuiltRevision" : {
        "SHA1" : "3ce0aa6e36d9474ac3105cab491a60327860757d",
        "branch" : [
          {
            "SHA1" : "3ce0aa6e36d9474ac3105cab491a60327860757d",
            "name" : "origin/master"
          }
        ]
      },
      "remoteUrls" : [
        "git://jogamp.org/srv/scm/jogl.git"
      ],
      "scmName" : ""
    },
    {
      "_class" : "hudson.plugins.git.GitTagAction"
    },
    {
      
    },
    {
      "_class" : "hudson.tasks.junit.TestResultAction",
      "failCount" : 0,
      "skipCount" : 0,
      "totalCount" : 466,
      "urlName" : "testReport"
    },
    {
      
    },
    {
      "_class" : "org.jenkinsci.plugins.displayurlapi.actions.RunDisplayAction"
    }
  ],
  "artifacts" : [
    
  ],
  "building" : False,
  "description" : None,
  "displayName" : "#880",
  "duration" : 2058713,
  "estimatedDuration" : 3745003,
  "executor" : None,
  "fullDisplayName" : "jogl » windows-x86_64 #880",
  "id" : "2012-12-29_23-45-00",
  "inProgress" : False,
  "keepLog" : False,
  "number" : 880,
  "queueId" : -1,
  "result" : "SUCCESS",
  "timestamp" : 1356821100000,
  "url" : "https://jogamp.org/chuck/job/jogl/label=windows-x86_64/880/",
  "builtOn" : "win64-nvgtx460-win7-jogamp-x64-sgothel-011",
  "changeSet" : {
    "_class" : "hudson.plugins.git.GitChangeSetList",
    "items" : [
      {
        "_class" : "hudson.plugins.git.GitChangeSet",
        "affectedPaths" : [
          "src/test/com/jogamp/opengl/test/junit/jogl/awt/TestBug572AWT.java",
          "make/scripts/tests.sh"
        ],
        "commitId" : "74d8e51e1cbb436eab6b90f78de90dacd10e60a5",
        "timestamp" : 1356775100000,
        "author" : {
          "absoluteUrl" : "https://jogamp.org/chuck/user/sven%20gothel",
          "fullName" : "Sven Gothel"
        },
        "authorEmail" : "sgothel@jausoft.com",
        "comment" : "Adapt change of commit d93c5d23e304ea20e868595748f92a5bef4f5703 to unit test (GLCanvas realization point)\u000a",
        "date" : "2012-12-29T10:58:20+0100",
        "id" : "74d8e51e1cbb436eab6b90f78de90dacd10e60a5",
        "msg" : "Adapt change of commit d93c5d23e304ea20e868595748f92a5bef4f5703 to unit",
        "paths" : [
          {
            "editType" : "edit",
            "file" : "make/scripts/tests.sh"
          },
          {
            "editType" : "edit",
            "file" : "src/test/com/jogamp/opengl/test/junit/jogl/awt/TestBug572AWT.java"
          }
        ]
      },
      {
        "_class" : "hudson.plugins.git.GitChangeSet",
        "affectedPaths" : [
          "src/jogl/classes/jogamp/opengl/GLContextImpl.java",
          "src/jogl/classes/com/jogamp/opengl/GLRendererQuirks.java",
          "src/test/com/jogamp/opengl/test/junit/jogl/acore/TestGLMesaBug651NEWT.java",
          "src/test/com/jogamp/opengl/test/junit/jogl/acore/TestGLUnitsNEWT.java",
          "src/test/com/jogamp/opengl/test/junit/jogl/acore/TestGLMesaBug658NEWT.java",
          "make/scripts/tests.sh"
        ],
        "commitId" : "3ce0aa6e36d9474ac3105cab491a60327860757d",
        "timestamp" : 1356817056000,
        "author" : {
          "absoluteUrl" : "https://jogamp.org/chuck/user/sven%20gothel",
          "fullName" : "Sven Gothel"
        },
        "authorEmail" : "sgothel@jausoft.com",
        "comment" : "Fix Bug 658 (Mesa 9.0 3.1 Intel compat quirk, 3.1 core only) ; No PROFILE_ALIASING compat -> core ; Fix setGLFunctionAvailability(..) failure path @ profile query\u000a\u000a- Add GLRendererQuirks.GLNonCompliant, marking a GL context/profile non compliant.\u000a  Currently: 'Mesa DRI Intel(R) Sandybridge Desktop' && 3.1 compat profile\u000a\u000a- Fix Bug 658 (Mesa 9.0 3.1 Intel compat quirk, 3.1 core only)\u000a  Detect case using new GLRendererQuirks.GLNonCompliant in setGLFunctionAvailability() and return 'false'.\u000a\u000a- No PROFILE_ALIASING compat -> core\u000a  Use true core GL profiles / context if available to ensure\u000a  proper API behavior across platforms due to different functionality.\u000a  E.g. don't use GL3bc if GL3 is requested.\u000a\u000a- Fix setGLFunctionAvailability(..) failure path @ profile query\u000a  Destroy temp context & zero result to cont. iterating through GL versions.\u000a  This missing cleanup lead to returning the faulty GL context handle and it's mapping/usage.\u000a",
        "date" : "2012-12-29T22:37:36+0100",
        "id" : "3ce0aa6e36d9474ac3105cab491a60327860757d",
        "msg" : "Fix Bug 658 (Mesa 9.0 3.1 Intel compat quirk, 3.1 core only) ; No",
        "paths" : [
          {
            "editType" : "edit",
            "file" : "make/scripts/tests.sh"
          },
          {
            "editType" : "edit",
            "file" : "src/jogl/classes/jogamp/opengl/GLContextImpl.java"
          },
          {
            "editType" : "add",
            "file" : "src/test/com/jogamp/opengl/test/junit/jogl/acore/TestGLMesaBug658NEWT.java"
          },
          {
            "editType" : "edit",
            "file" : "src/jogl/classes/com/jogamp/opengl/GLRendererQuirks.java"
          },
          {
            "editType" : "add",
            "file" : "src/test/com/jogamp/opengl/test/junit/jogl/acore/TestGLMesaBug651NEWT.java"
          },
          {
            "editType" : "delete",
            "file" : "src/test/com/jogamp/opengl/test/junit/jogl/acore/TestGLUnitsNEWT.java"
          }
        ]
      }
    ],
    "kind" : "git"
  },
  "culprits" : [
    {
      "absoluteUrl" : "https://jogamp.org/chuck/user/sgothel",
      "fullName" : "Sven Gothel"
    }
  ]
}