{
  "_class" : "hudson.matrix.MatrixRun",
  "actions" : [
    {
      
    },
    {
      "_class" : "hudson.model.CauseAction",
      "causes" : [
        {
          "_class" : "hudson.model.Cause$UpstreamCause",
          "shortDescription" : "Started by upstream project \"gluegen\" build number 663",
          "upstreamBuild" : 663,
          "upstreamProject" : "gluegen",
          "upstreamUrl" : "job/gluegen/"
        }
      ]
    },
    {
      "_class" : "hudson.plugins.git.util.BuildData",
      "buildsByBranchName" : {
        "origin/master" : {
          "_class" : "hudson.plugins.git.util.Build",
          "buildNumber" : 663,
          "buildResult" : None,
          "marked" : {
            "SHA1" : "86f5e7eac7544d2511b70c2142634c89c69d0594",
            "branch" : [
              {
                "SHA1" : "86f5e7eac7544d2511b70c2142634c89c69d0594",
                "name" : "origin/master"
              }
            ]
          },
          "revision" : {
            "SHA1" : "86f5e7eac7544d2511b70c2142634c89c69d0594",
            "branch" : [
              {
                "SHA1" : "86f5e7eac7544d2511b70c2142634c89c69d0594",
                "name" : "origin/master"
              }
            ]
          }
        }
      },
      "lastBuiltRevision" : {
        "SHA1" : "86f5e7eac7544d2511b70c2142634c89c69d0594",
        "branch" : [
          {
            "SHA1" : "86f5e7eac7544d2511b70c2142634c89c69d0594",
            "name" : "origin/master"
          }
        ]
      },
      "remoteUrls" : [
        "git://jogamp.org/srv/scm/gluegen.git"
      ],
      "scmName" : ""
    },
    {
      "_class" : "hudson.plugins.git.GitTagAction"
    },
    {
      
    },
    {
      "_class" : "hudson.tasks.junit.TestResultAction",
      "failCount" : 0,
      "skipCount" : 0,
      "totalCount" : 210,
      "urlName" : "testReport"
    },
    {
      
    },
    {
      
    },
    {
      "_class" : "org.jenkinsci.plugins.displayurlapi.actions.RunDisplayAction"
    }
  ],
  "artifacts" : [
    
  ],
  "building" : False,
  "description" : None,
  "displayName" : "#663",
  "duration" : 187333,
  "estimatedDuration" : 375087,
  "executor" : None,
  "fullDisplayName" : "gluegen » macos-x86_64 #663",
  "id" : "2013-04-13_23-08-46",
  "inProgress" : False,
  "keepLog" : False,
  "number" : 663,
  "queueId" : -1,
  "result" : "SUCCESS",
  "timestamp" : 1365887326000,
  "url" : "https://jogamp.org/chuck/job/gluegen/label=macos-x86_64/663/",
  "builtOn" : "macosx64-NV320M-10_6-jogamp-x64-sgothel-012",
  "changeSet" : {
    "_class" : "hudson.plugins.git.GitChangeSetList",
    "items" : [
      {
        "_class" : "hudson.plugins.git.GitChangeSet",
        "affectedPaths" : [
          "src/junit/com/jogamp/gluegen/test/junit/generation/test1.h",
          "make/scripts/runtest.sh",
          "src/junit/com/jogamp/gluegen/test/junit/generation/BaseClass.java",
          "src/junit/com/jogamp/gluegen/test/junit/generation/test1.c"
        ],
        "commitId" : "47333929fd4e563d61996654d2a435b52b904ef0",
        "timestamp" : 1365879609000,
        "author" : {
          "absoluteUrl" : "https://jogamp.org/chuck/user/sven%20gothel",
          "fullName" : "Sven Gothel"
        },
        "authorEmail" : "sgothel@jausoft.com",
        "comment" : "Bug 715: Adding unit test w/ 'intArrayCopy(int *dest, int *src, int num)' to test array offset working correct.\u000a\u000aThe 'carray' pointer returned from GetPrimitiveArrayCritical(..) is moved about the array offset\u000aand used in ReleasePrimitiveArrayCritical(..) to release the pinpointed memory.\u000a\u000aEven though this 'is' a bug by violating the _sparse_ specification, Hotspot impl. doesn't use the value at all (NOP)\u000aand hence this code didn't produce an error since .. (Same w/ Dalvik).\u000a\u000aA followup commit will fix this issue.\u000a",
        "date" : "2013-04-13T21:00:09+0200",
        "id" : "47333929fd4e563d61996654d2a435b52b904ef0",
        "msg" : "Bug 715: Adding unit test w/ 'intArrayCopy(int *dest, int *src, int",
        "paths" : [
          {
            "editType" : "edit",
            "file" : "src/junit/com/jogamp/gluegen/test/junit/generation/BaseClass.java"
          },
          {
            "editType" : "edit",
            "file" : "make/scripts/runtest.sh"
          },
          {
            "editType" : "edit",
            "file" : "src/junit/com/jogamp/gluegen/test/junit/generation/test1.c"
          },
          {
            "editType" : "edit",
            "file" : "src/junit/com/jogamp/gluegen/test/junit/generation/test1.h"
          }
        ]
      },
      {
        "_class" : "hudson.plugins.git.GitChangeSet",
        "affectedPaths" : [
          "src/java/com/jogamp/gluegen/CMethodBindingEmitter.java"
        ],
        "commitId" : "86f5e7eac7544d2511b70c2142634c89c69d0594",
        "timestamp" : 1365879841000,
        "author" : {
          "absoluteUrl" : "https://jogamp.org/chuck/user/sven%20gothel",
          "fullName" : "Sven Gothel"
        },
        "authorEmail" : "sgothel@jausoft.com",
        "comment" : "Fix Bug 715: Don't modify 'carray' pointer returned from GetPrimitiveArrayCritical(..)\u000a\u000aThe 'carray' pointer returned from GetPrimitiveArrayCritical(..) was moved about the array offset\u000aand used in ReleasePrimitiveArrayCritical(..) to release the pinpointed memory.\u000a\u000aEven though this 'is' a bug by violating the _sparse_ specification, Hotspot impl. doesn't use the value at all (NOP)\u000aand hence this code didn't produce an error since .. (Same w/ Dalvik).\u000a\u000aNow the array offset is added while passing the carray pointer to the native function call\u000aand hence is no more modified and the orig. value is passed to ReleasePrimitiveArrayCritical(..).\u000a\u000aTested w/ GlueGen unit tests and all JOGL unit tests (on Linux x64 w/ 'a' hotspot VM).\u000a",
        "date" : "2013-04-13T21:04:01+0200",
        "id" : "86f5e7eac7544d2511b70c2142634c89c69d0594",
        "msg" : "Fix Bug 715: Don't modify 'carray' pointer returned from",
        "paths" : [
          {
            "editType" : "edit",
            "file" : "src/java/com/jogamp/gluegen/CMethodBindingEmitter.java"
          }
        ]
      }
    ],
    "kind" : "git"
  },
  "culprits" : [
    {
      "absoluteUrl" : "https://jogamp.org/chuck/user/sgothel",
      "fullName" : "Sven Gothel"
    },
    {
      "absoluteUrl" : "https://jogamp.org/chuck/user/hharrison",
      "fullName" : "Harvey Harrison"
    }
  ]
}