{
  "_class" : "hudson.matrix.MatrixRun",
  "actions" : [
    {
      
    },
    {
      "_class" : "hudson.model.CauseAction",
      "causes" : [
        {
          "_class" : "hudson.model.Cause$UpstreamCause",
          "shortDescription" : "Started by upstream project \"gluegen_onmaster\" build number 43",
          "upstreamBuild" : 43,
          "upstreamProject" : "gluegen_onmaster",
          "upstreamUrl" : "job/gluegen_onmaster/"
        }
      ]
    },
    {
      
    },
    {
      "_class" : "hudson.plugins.git.util.BuildData",
      "buildsByBranchName" : {
        "origin/master" : {
          "_class" : "hudson.plugins.git.util.Build",
          "buildNumber" : 43,
          "buildResult" : None,
          "marked" : {
            "SHA1" : "15ea21ea190a79a3740b66698103ef5b4f145e94",
            "branch" : [
              {
                "SHA1" : "15ea21ea190a79a3740b66698103ef5b4f145e94",
                "name" : "origin/master"
              }
            ]
          },
          "revision" : {
            "SHA1" : "15ea21ea190a79a3740b66698103ef5b4f145e94",
            "branch" : [
              {
                "SHA1" : "15ea21ea190a79a3740b66698103ef5b4f145e94",
                "name" : "origin/master"
              }
            ]
          }
        }
      },
      "lastBuiltRevision" : {
        "SHA1" : "15ea21ea190a79a3740b66698103ef5b4f145e94",
        "branch" : [
          {
            "SHA1" : "15ea21ea190a79a3740b66698103ef5b4f145e94",
            "name" : "origin/master"
          }
        ]
      },
      "remoteUrls" : [
        "git://jogamp.org/srv/scm/gluegen.git"
      ],
      "scmName" : ""
    },
    {
      "_class" : "hudson.plugins.git.GitTagAction"
    },
    {
      
    },
    {
      "_class" : "org.jenkinsci.plugins.displayurlapi.actions.RunDisplayAction"
    }
  ],
  "artifacts" : [
    
  ],
  "building" : False,
  "description" : None,
  "displayName" : "#43",
  "duration" : 43487,
  "estimatedDuration" : 220134,
  "executor" : None,
  "fullDisplayName" : "gluegen_onmaster » linux-x86_64-master-001 #43",
  "id" : "2014-02-23_05-34-10",
  "inProgress" : False,
  "keepLog" : False,
  "number" : 43,
  "queueId" : -1,
  "result" : "SUCCESS",
  "timestamp" : 1393130050000,
  "url" : "https://jogamp.org/chuck/view/on%20server/job/gluegen_onmaster/label=linux-x86_64-master-001/43/",
  "builtOn" : "linux64-null-centos55-jogamp-x64-chuck-001",
  "changeSet" : {
    "_class" : "hudson.plugins.git.GitChangeSetList",
    "items" : [
      {
        "_class" : "hudson.plugins.git.GitChangeSet",
        "affectedPaths" : [
          "src/java/jogamp/common/os/PlatformPropsImpl.java"
        ],
        "commitId" : "86bdae8ce26d291c0096ed500581239dd2a87125",
        "timestamp" : 1392525159000,
        "author" : {
          "absoluteUrl" : "https://jogamp.org/chuck/user/sven%20gothel",
          "fullName" : "Sven Gothel"
        },
        "authorEmail" : "sgothel@jausoft.com",
        "comment" : "Bug 958 - Add support for OpenJDK version notation\u000a\u000aManu <puybaret@eteks.com>:\u000a\u000aIn OpenJDK, Java version notation is a little different from Oracle JDK one:\u000aOpenJDK uses \"-u\" instead of \"_\" to separate the version number from the update number, i.e. \"1.7.0-u60-b04\" vs \"1.7.0_60-ea\".\u000aThat would be nice to take this into account in the static initializer of jogamp.common.os.PlatformPropsImpl class. You could simply replace the line:\u000a  final int usIdx = JAVA_VERSION.lastIndexOf(\"_\");\u000aby:\u000a  final int usIdx = JAVA_VERSION.replace(\"-u\", \"_\").lastIndexOf(\"_\");\u000aIf you want to program it better, you can also test the \"java.runtime.name\" property that returns \"OpenJDK Runtime Environment\" for OpenJDK.\u000a\u000aSee also bug #944 https://jogamp.org/bugzilla/show_bug.cgi?id=944\u000a\u000a+++\u000a\u000aDone .. avoding the replace op.\u000a",
        "date" : "2014-02-16T05:32:39+0100",
        "id" : "86bdae8ce26d291c0096ed500581239dd2a87125",
        "msg" : "Bug 958 - Add support for OpenJDK version notation",
        "paths" : [
          {
            "editType" : "edit",
            "file" : "src/java/jogamp/common/os/PlatformPropsImpl.java"
          }
        ]
      },
      {
        "_class" : "hudson.plugins.git.GitChangeSet",
        "affectedPaths" : [
          "src/junit/com/jogamp/common/util/TestBitstream00.java",
          "src/junit/com/jogamp/common/util/TestBitstream02.java",
          "make/scripts/runtest.sh",
          "src/junit/com/jogamp/common/util/TestBitstream01.java",
          "src/junit/com/jogamp/common/util/BitstreamData.java",
          "src/junit/com/jogamp/common/util/TestBitstream04.java",
          "src/java/com/jogamp/common/util/Bitstream.java",
          "src/junit/com/jogamp/common/util/TestBitstream03.java"
        ],
        "commitId" : "d4d337be925a28b8701ac335c2b5cc6e390cabc9",
        "timestamp" : 1392910956000,
        "author" : {
          "absoluteUrl" : "https://jogamp.org/chuck/user/sven%20gothel",
          "fullName" : "Sven Gothel"
        },
        "authorEmail" : "sgothel@jausoft.com",
        "comment" : "Bug 890: Adding versatile Bitstream implementation\u000a\u000aWe already have several locations where bitstream operations are required and\u000apartially implemented (JPEG decoder, media parsing, ..)\u000aas well as endian related conversion (elf parser, ..).\u000a\u000aCreate a versatile Bitstream class allowing:\u000a  - Utilize I/O operations on I/O streams, buffers and arrays\u000a  - Consider MSBfirst / LSBfirst mode\u000a  - Linear bit R/W operations\u000a  - Bulk R/W operations w/ endian related type conversion\u000a  - Allow mark/reset and switching streams and input/output mode\u000a  - Optimized operations\u000a\u000aComplete set of unit tests included, covering hopefully all cases.\u000a",
        "date" : "2014-02-20T16:42:36+0100",
        "id" : "d4d337be925a28b8701ac335c2b5cc6e390cabc9",
        "msg" : "Bug 890: Adding versatile Bitstream implementation",
        "paths" : [
          {
            "editType" : "add",
            "file" : "src/junit/com/jogamp/common/util/TestBitstream00.java"
          },
          {
            "editType" : "add",
            "file" : "src/junit/com/jogamp/common/util/TestBitstream01.java"
          },
          {
            "editType" : "add",
            "file" : "src/junit/com/jogamp/common/util/TestBitstream02.java"
          },
          {
            "editType" : "add",
            "file" : "src/junit/com/jogamp/common/util/TestBitstream04.java"
          },
          {
            "editType" : "add",
            "file" : "src/junit/com/jogamp/common/util/TestBitstream03.java"
          },
          {
            "editType" : "edit",
            "file" : "make/scripts/runtest.sh"
          },
          {
            "editType" : "add",
            "file" : "src/junit/com/jogamp/common/util/BitstreamData.java"
          },
          {
            "editType" : "add",
            "file" : "src/java/com/jogamp/common/util/Bitstream.java"
          }
        ]
      },
      {
        "_class" : "hudson.plugins.git.GitChangeSet",
        "affectedPaths" : [
          "src/java/jogamp/common/os/elf/IOUtils.java",
          "src/java/jogamp/common/os/elf/SectionArmAttributes.java"
        ],
        "commitId" : "8022ae51a072f5198409d3c81d9979456676d0cf",
        "timestamp" : 1392911014000,
        "author" : {
          "absoluteUrl" : "https://jogamp.org/chuck/user/sven%20gothel",
          "fullName" : "Sven Gothel"
        },
        "authorEmail" : "sgothel@jausoft.com",
        "comment" : "Bug 980: Use Bitsream class for jogamp.common.os.elf.**\u000a",
        "date" : "2014-02-20T16:43:34+0100",
        "id" : "8022ae51a072f5198409d3c81d9979456676d0cf",
        "msg" : "Bug 980: Use Bitsream class for jogamp.common.os.elf.**",
        "paths" : [
          {
            "editType" : "edit",
            "file" : "src/java/jogamp/common/os/elf/SectionArmAttributes.java"
          },
          {
            "editType" : "edit",
            "file" : "src/java/jogamp/common/os/elf/IOUtils.java"
          }
        ]
      },
      {
        "_class" : "hudson.plugins.git.GitChangeSet",
        "affectedPaths" : [
          "src/junit/com/jogamp/common/util/BitstreamData.java",
          "src/junit/com/jogamp/common/util/TestBitstream00.java",
          "src/java/com/jogamp/common/util/Bitstream.java",
          "make/scripts/runtest.sh"
        ],
        "commitId" : "c70c730b22c847668cf475dc6f841b85297ac3ab",
        "timestamp" : 1392960672000,
        "author" : {
          "absoluteUrl" : "https://jogamp.org/chuck/user/sven%20gothel",
          "fullName" : "Sven Gothel"
        },
        "authorEmail" : "sgothel@jausoft.com",
        "comment" : "Bitstream: Add static 'long toUint32Long(int)' and 'int toUint32Int(int)' conversion functions\u000a",
        "date" : "2014-02-21T06:31:12+0100",
        "id" : "c70c730b22c847668cf475dc6f841b85297ac3ab",
        "msg" : "Bitstream: Add static 'long toUint32Long(int)' and 'int",
        "paths" : [
          {
            "editType" : "edit",
            "file" : "src/java/com/jogamp/common/util/Bitstream.java"
          },
          {
            "editType" : "edit",
            "file" : "src/junit/com/jogamp/common/util/BitstreamData.java"
          },
          {
            "editType" : "edit",
            "file" : "make/scripts/runtest.sh"
          },
          {
            "editType" : "edit",
            "file" : "src/junit/com/jogamp/common/util/TestBitstream00.java"
          }
        ]
      },
      {
        "_class" : "hudson.plugins.git.GitChangeSet",
        "affectedPaths" : [
          "src/junit/com/jogamp/common/util/TestBitstream00.java",
          "src/junit/com/jogamp/common/util/BitstreamData.java",
          "src/java/com/jogamp/common/util/Bitstream.java"
        ],
        "commitId" : "bd91f0fb4c67c7effc4715600e53f38bf1b79e12",
        "timestamp" : 1392962249000,
        "author" : {
          "absoluteUrl" : "https://jogamp.org/chuck/user/sven%20gothel",
          "fullName" : "Sven Gothel"
        },
        "authorEmail" : "sgothel@jausoft.com",
        "comment" : "Bitstream: Refine c70c730b22c847668cf475dc6f841b85297ac3ab: 'toUint32Long' -> 'toUInt32Long', add 'uint32LongtoInt'\u000a",
        "date" : "2014-02-21T06:57:29+0100",
        "id" : "bd91f0fb4c67c7effc4715600e53f38bf1b79e12",
        "msg" : "Bitstream: Refine c70c730b22c847668cf475dc6f841b85297ac3ab:",
        "paths" : [
          {
            "editType" : "edit",
            "file" : "src/java/com/jogamp/common/util/Bitstream.java"
          },
          {
            "editType" : "edit",
            "file" : "src/junit/com/jogamp/common/util/TestBitstream00.java"
          },
          {
            "editType" : "edit",
            "file" : "src/junit/com/jogamp/common/util/BitstreamData.java"
          }
        ]
      },
      {
        "_class" : "hudson.plugins.git.GitChangeSet",
        "affectedPaths" : [
          "src/java/com/jogamp/common/util/Bitstream.java"
        ],
        "commitId" : "dac8d11f68ffa3a35fedeab879132c5d9aa4907c",
        "timestamp" : 1392962647000,
        "author" : {
          "absoluteUrl" : "https://jogamp.org/chuck/user/sven%20gothel",
          "fullName" : "Sven Gothel"
        },
        "authorEmail" : "sgothel@jausoft.com",
        "comment" : "Bitstream: Another CamelCase fix: uint32LongtoInt -> uint32LongToInt\u000a",
        "date" : "2014-02-21T07:04:07+0100",
        "id" : "dac8d11f68ffa3a35fedeab879132c5d9aa4907c",
        "msg" : "Bitstream: Another CamelCase fix: uint32LongtoInt -> uint32LongToInt",
        "paths" : [
          {
            "editType" : "edit",
            "file" : "src/java/com/jogamp/common/util/Bitstream.java"
          }
        ]
      },
      {
        "_class" : "hudson.plugins.git.GitChangeSet",
        "affectedPaths" : [
          "src/junit/com/jogamp/common/util/TestBitstream00.java",
          "src/java/jogamp/common/os/elf/IOUtils.java",
          "make/scripts/runtest.sh",
          "src/junit/com/jogamp/common/util/TestBitstream02.java",
          "src/junit/com/jogamp/common/util/BitstreamData.java",
          "src/junit/com/jogamp/common/util/TestBitstream04.java",
          "src/java/com/jogamp/common/util/Bitstream.java",
          "src/junit/com/jogamp/common/util/TestBitstream03.java"
        ],
        "commitId" : "4447232af0d95a4348d09d4ed03fbef48394ca3a",
        "timestamp" : 1392978336000,
        "author" : {
          "absoluteUrl" : "https://jogamp.org/chuck/user/sven%20gothel",
          "fullName" : "Sven Gothel"
        },
        "authorEmail" : "sgothel@jausoft.com",
        "comment" : "Bug 980: Refine Bitstream API 'signed' and 'unsigned' semantics - readUInt32(..) must return long due to EOF\u000a",
        "date" : "2014-02-21T11:25:36+0100",
        "id" : "4447232af0d95a4348d09d4ed03fbef48394ca3a",
        "msg" : "Bug 980: Refine Bitstream API 'signed' and 'unsigned' semantics -",
        "paths" : [
          {
            "editType" : "edit",
            "file" : "make/scripts/runtest.sh"
          },
          {
            "editType" : "edit",
            "file" : "src/junit/com/jogamp/common/util/TestBitstream00.java"
          },
          {
            "editType" : "edit",
            "file" : "src/java/jogamp/common/os/elf/IOUtils.java"
          },
          {
            "editType" : "edit",
            "file" : "src/junit/com/jogamp/common/util/TestBitstream03.java"
          },
          {
            "editType" : "edit",
            "file" : "src/junit/com/jogamp/common/util/TestBitstream04.java"
          },
          {
            "editType" : "edit",
            "file" : "src/junit/com/jogamp/common/util/BitstreamData.java"
          },
          {
            "editType" : "edit",
            "file" : "src/junit/com/jogamp/common/util/TestBitstream02.java"
          },
          {
            "editType" : "edit",
            "file" : "src/java/com/jogamp/common/util/Bitstream.java"
          }
        ]
      },
      {
        "_class" : "hudson.plugins.git.GitChangeSet",
        "affectedPaths" : [
          "make/build-test.xml"
        ],
        "commitId" : "3c29aebb4910858df66cc54d186623f1bb7eff04",
        "timestamp" : 1392978390000,
        "author" : {
          "absoluteUrl" : "https://jogamp.org/chuck/user/sven%20gothel",
          "fullName" : "Sven Gothel"
        },
        "authorEmail" : "sgothel@jausoft.com",
        "comment" : "build-test.xml: Push 'java.generate' up from java.build to android.package\u000a",
        "date" : "2014-02-21T11:26:30+0100",
        "id" : "3c29aebb4910858df66cc54d186623f1bb7eff04",
        "msg" : "build-test.xml: Push 'java.generate' up from java.build to",
        "paths" : [
          {
            "editType" : "edit",
            "file" : "make/build-test.xml"
          }
        ]
      },
      {
        "_class" : "hudson.plugins.git.GitChangeSet",
        "affectedPaths" : [
          "src/java/com/jogamp/common/util/Bitstream.java"
        ],
        "commitId" : "15ea21ea190a79a3740b66698103ef5b4f145e94",
        "timestamp" : 1392983522000,
        "author" : {
          "absoluteUrl" : "https://jogamp.org/chuck/user/sven%20gothel",
          "fullName" : "Sven Gothel"
        },
        "authorEmail" : "sgothel@jausoft.com",
        "comment" : "Bitstream: Add 'throwIOExceptionOnEOF' mode; fix certain EOS situations (flush, skip)\u000a",
        "date" : "2014-02-21T12:52:02+0100",
        "id" : "15ea21ea190a79a3740b66698103ef5b4f145e94",
        "msg" : "Bitstream: Add 'throwIOExceptionOnEOF' mode; fix certain EOS situations",
        "paths" : [
          {
            "editType" : "edit",
            "file" : "src/java/com/jogamp/common/util/Bitstream.java"
          }
        ]
      }
    ],
    "kind" : "git"
  },
  "culprits" : [
    {
      "absoluteUrl" : "https://jogamp.org/chuck/user/sgothel",
      "fullName" : "Sven Gothel"
    }
  ]
}