{
  "_class" : "hudson.matrix.MatrixBuild",
  "actions" : [
    {
      "_class" : "hudson.model.CauseAction",
      "causes" : [
        {
          "_class" : "hudson.triggers.SCMTrigger$SCMTriggerCause",
          "shortDescription" : "Started by an SCM change"
        }
      ]
    },
    {
      "_class" : "hudson.plugins.git.util.BuildData",
      "buildsByBranchName" : {
        "origin/master" : {
          "_class" : "hudson.plugins.git.util.Build",
          "buildNumber" : 60,
          "buildResult" : None,
          "marked" : {
            "SHA1" : "2df3bea10859ee2f2c4b3622f3b610b17a5749d6",
            "branch" : [
              {
                "SHA1" : "2df3bea10859ee2f2c4b3622f3b610b17a5749d6",
                "name" : "origin/master"
              }
            ]
          },
          "revision" : {
            "SHA1" : "2df3bea10859ee2f2c4b3622f3b610b17a5749d6",
            "branch" : [
              {
                "SHA1" : "2df3bea10859ee2f2c4b3622f3b610b17a5749d6",
                "name" : "origin/master"
              }
            ]
          }
        }
      },
      "lastBuiltRevision" : {
        "SHA1" : "2df3bea10859ee2f2c4b3622f3b610b17a5749d6",
        "branch" : [
          {
            "SHA1" : "2df3bea10859ee2f2c4b3622f3b610b17a5749d6",
            "name" : "origin/master"
          }
        ]
      },
      "remoteUrls" : [
        
      ],
      "scmName" : ""
    },
    {
      
    },
    {
      "_class" : "hudson.tasks.test.MatrixTestResult",
      "failCount" : 0,
      "skipCount" : 0,
      "totalCount" : 8,
      "urlName" : "testReport"
    },
    {
      "_class" : "org.jenkinsci.plugins.displayurlapi.actions.RunDisplayAction"
    }
  ],
  "artifacts" : [
    
  ],
  "building" : False,
  "description" : None,
  "displayName" : "#60",
  "duration" : 498032,
  "estimatedDuration" : 3723458,
  "executor" : None,
  "fullDisplayName" : "jogl #60",
  "id" : "2010-04-14_21-17-17",
  "inProgress" : False,
  "keepLog" : False,
  "number" : 60,
  "queueId" : -1,
  "result" : "SUCCESS",
  "timestamp" : 1271272637000,
  "url" : "https://jogamp.org/chuck/view/on%20server/job/jogl/60/",
  "builtOn" : "u64JogAmp",
  "changeSet" : {
    "_class" : "hudson.plugins.git.GitChangeSetList",
    "items" : [
      {
        "_class" : "hudson.plugins.git.GitChangeSet",
        "affectedPaths" : [
          
        ],
        "commitId" : "1c1053c6a8b669c067ae1316b9770871e213ea05",
        "timestamp" : 1271177330000,
        "author" : {
          "absoluteUrl" : "https://jogamp.org/chuck/user/sven%20gothel",
          "fullName" : "Sven Gothel"
        },
        "authorEmail" : "sgothel@jausoft.com",
        "comment" : "NEWT X11 Fix (mainly ATI and multithreading)\u000a    - EventDispatchThread -> EDTUtil\u000a      Since the name leads to the assumptions that an instance is the EDT.\u000a      EDTUtil manages the EDT within.\u000a\u000a    - EDTUtil, no more reference to Display, but use a Runnable for the\u000a      pumpMessage()\u000a\u000a    - Window.destroy() check if already done\u000a\u000a    - X11Window: Added XErrorHandler to catch BadWindow and BadAtom\u000a      while dispatching events - it is possible that the resource\u000a      is already freed. Also added an XIOErrorHandler to identify\u000a      the fatal Display* inaccessibility.\u000a\u000aTests:\u000a    - New junit/com/jogamp/test/junit/newt/TestWindows01NEWT.java\u000a      Testing creation/destruction and double destruction (error case)\u000a\u000a    - Fix: src/junit/com/jogamp/test/junit/jogl/offscreen/TestOffscreen01NEWT.java\u000a      Properly holding all NEWT references ..\u000a\u000aMisc:\u000a    - Reduced redundant NEWT 'toString()' output (*Capabilities, ..)\u000a    -\u000a",
        "date" : "2010-04-13T18:48:50+0200",
        "id" : "1c1053c6a8b669c067ae1316b9770871e213ea05",
        "msg" : "NEWT X11 Fix (mainly ATI and multithreading)",
        "paths" : [
          
        ]
      },
      {
        "_class" : "hudson.plugins.git.GitChangeSet",
        "affectedPaths" : [
          
        ],
        "commitId" : "2df3bea10859ee2f2c4b3622f3b610b17a5749d6",
        "timestamp" : 1271179484000,
        "author" : {
          "absoluteUrl" : "https://jogamp.org/chuck/user/sven%20gothel",
          "fullName" : "Sven Gothel"
        },
        "authorEmail" : "sgothel@jausoft.com",
        "comment" : "ATI (fglrx) PBuffer/X11Display bug workaround/cleanup\u000a\u000a    - See https://bugzilla.mozilla.org/show_bug.cgi?id=486277\u000a\u000a    - Description:\u000a        - To use PBuffer, a context must be current\u000a\u000a        - X11Display cannot be switched while using the PBuffer\u000a          [within one thread]. Hence we shall try harder to reuse\u000a          _the_ user configured X11Display - whenever possible.\u000a          This is actually a good thing, ie cleanup up our\u000a          code again.\u000a\u000a    - Changes to workaround/cleanup:\u000a        - GLDrawableFactory* methods 'canCreate*()'\u000a          are changed to 'canCreate*(AbstractGraphicsDevice)'\u000a          to allow pipelining the X11Display.\u000a          This reduces the overhead of using a local TLS X11Display.\u000a\u000a    - WindowsDummyWGLDrawable cstr gets the GLProfile as a parameter now,\u000a      this is done while adding X11DummyGLXDrawable - forseeing the\u000a      usecase to query available GLProfiles at startup.\u000a\u000a    - X11DummyGLXDrawable added, following the WindowsDummyWGLDrawable path\u000a      to have a dummy GLContext current to fix the ATI bug.\u000a\u000aNativeWindow X11:\u000a    - Add XIOErrorHandler to identify the fatal failure\u000a      of closing a Display (-> ATI bug).\u000a\u000aBuild:\u000a    - Adding ant.jar and ant-junit.jar to the junit compile/run classpath\u000a    -\u000a\u000aMisc:\u000a    - Fix: CreateDummyWindow(..) returns a HWND, not a HDC\u000a    - mapToRealGLFunctionName: Added mapping for X11/GLX.\u000a    - X11GLXGraphicsConfigurationFactory: Uncommented dead code 'createDefaultGraphicsConfigurationFBConfig'\u000a\u000aTests: Passed (Linux64bit: NVidia/ATI)\u000a\u000aTodo: More tests on ATI, especially multithreading/X11Display usage.\u000a",
        "date" : "2010-04-13T19:24:44+0200",
        "id" : "2df3bea10859ee2f2c4b3622f3b610b17a5749d6",
        "msg" : "ATI (fglrx) PBuffer/X11Display bug workaround/cleanup",
        "paths" : [
          
        ]
      }
    ],
    "kind" : "git"
  },
  "culprits" : [
    {
      "absoluteUrl" : "https://jogamp.org/chuck/user/sven%20gothel",
      "fullName" : "Sven Gothel"
    }
  ],
  "runs" : [
    
  ]
}