{
  "_class" : "hudson.matrix.MatrixRun",
  "actions" : [
    {
      
    },
    {
      "_class" : "hudson.model.CauseAction",
      "causes" : [
        {
          "_class" : "hudson.model.Cause$UpstreamCause",
          "shortDescription" : "Started by upstream project \"jogl_onmaster\" build number 91",
          "upstreamBuild" : 91,
          "upstreamProject" : "jogl_onmaster",
          "upstreamUrl" : "job/jogl_onmaster/"
        }
      ]
    },
    {
      
    },
    {
      "_class" : "hudson.plugins.git.util.BuildData",
      "buildsByBranchName" : {
        "origin/master" : {
          "_class" : "hudson.plugins.git.util.Build",
          "buildNumber" : 91,
          "buildResult" : None,
          "marked" : {
            "SHA1" : "c1594efa78951f187a75ec0b9a85cf64fba418d4",
            "branch" : [
              {
                "SHA1" : "c1594efa78951f187a75ec0b9a85cf64fba418d4",
                "name" : "origin/master"
              }
            ]
          },
          "revision" : {
            "SHA1" : "c1594efa78951f187a75ec0b9a85cf64fba418d4",
            "branch" : [
              {
                "SHA1" : "c1594efa78951f187a75ec0b9a85cf64fba418d4",
                "name" : "origin/master"
              }
            ]
          }
        }
      },
      "lastBuiltRevision" : {
        "SHA1" : "c1594efa78951f187a75ec0b9a85cf64fba418d4",
        "branch" : [
          {
            "SHA1" : "c1594efa78951f187a75ec0b9a85cf64fba418d4",
            "name" : "origin/master"
          }
        ]
      },
      "remoteUrls" : [
        "git://jogamp.org/srv/scm/jogl.git"
      ],
      "scmName" : ""
    },
    {
      "_class" : "hudson.plugins.git.GitTagAction"
    },
    {
      
    },
    {
      "_class" : "org.jenkinsci.plugins.displayurlapi.actions.RunDisplayAction"
    }
  ],
  "artifacts" : [
    
  ],
  "building" : False,
  "description" : None,
  "displayName" : "#91",
  "duration" : 951965,
  "estimatedDuration" : 1395812,
  "executor" : None,
  "fullDisplayName" : "jogl_onmaster » linux-x86_64-master-001 #91",
  "id" : "91",
  "inProgress" : False,
  "keepLog" : False,
  "number" : 91,
  "queueId" : 2322,
  "result" : "SUCCESS",
  "timestamp" : 1444364507951,
  "url" : "https://jogamp.org/chuck/view/on%20server/job/jogl_onmaster/label=linux-x86_64-master-001/91/",
  "builtOn" : "linux64-null-centos55-jogamp-x64-chuck-001",
  "changeSet" : {
    "_class" : "hudson.plugins.git.GitChangeSetList",
    "items" : [
      {
        "_class" : "hudson.plugins.git.GitChangeSet",
        "affectedPaths" : [
          "make/stub_includes/opengl/GLES2/gl2ext-supplement.h"
        ],
        "commitId" : "56eb5025694064ad3e25cf2fb7ba0cabbda8ee67",
        "timestamp" : 1444256425000,
        "author" : {
          "absoluteUrl" : "https://jogamp.org/chuck/user/sven%20gothel",
          "fullName" : "Sven Gothel"
        },
        "authorEmail" : "sgothel@jausoft.com",
        "comment" : "Bug 1189: Fix gcc redefinition error, even thought typedef equals - on\u000aOpenIndiana w/ old'ish gcc\u000a",
        "date" : "2015-10-08 00:20:25 +0200",
        "id" : "56eb5025694064ad3e25cf2fb7ba0cabbda8ee67",
        "msg" : "Bug 1189: Fix gcc redefinition error, even thought typedef equals - on",
        "paths" : [
          {
            "editType" : "edit",
            "file" : "make/stub_includes/opengl/GLES2/gl2ext-supplement.h"
          }
        ]
      },
      {
        "_class" : "hudson.plugins.git.GitChangeSet",
        "affectedPaths" : [
          "src/test/com/jogamp/opengl/test/junit/newt/parenting/TestParenting01NEWT.java",
          "src/newt/native/WindowsWindow.c",
          "src/newt/classes/jogamp/newt/WindowImpl.java",
          "src/newt/native/X11Window.c",
          "src/test/com/jogamp/opengl/test/junit/newt/TestGLWindows00NEWT.java",
          "src/test/com/jogamp/opengl/test/junit/newt/TestGLWindows01NEWT.java",
          "src/newt/native/X11Display.c",
          "make/scripts/tests.sh",
          "src/newt/native/X11Common.h"
        ],
        "commitId" : "dca5d36370ec5eb44998bae593880e3b10cc9a4e",
        "timestamp" : 1444327992000,
        "author" : {
          "absoluteUrl" : "https://jogamp.org/chuck/user/sven%20gothel",
          "fullName" : "Sven Gothel"
        },
        "authorEmail" : "sgothel@jausoft.com",
        "comment" : "Bug 1249 - NEWT X11: setVisible(false) IconicState not listening to\u000a_NET_WM_STATE_HIDDEN; setVisible(true) not restoring from\u000a_NET_WM_STATE_HIDDEN\u000aUsing Gnome Shell 3.14.4-1~deb8u1 disclosed an issue w/ our newly\u000autilized IconicState/_NET_WM_STATE_HIDDEN, i.e. visibleChanged(false)\u000awas never received.\u000aThis is a regression of commit\u000a2d837a7a7130702ad36b694875613fae77c7ef06, which utilizes\u000aWM_CHANGE_STATE_IDX + IconicState for visibility on top-level windows.\u000aThis bug consist out of _two_ isssue:\u000a1) setVisible(false) IconicState not listening to _NET_WM_STATE_HIDDEN\u000a Here, we 'listen' to _NET_WM_STATE_HIDDEN when receiving\u000aConfigureNotify\u000a if supported _and_ XMapWindow has been issued.\u000a In such case existence/non-existence of _NET_WM_STATE_HIDDEN\u000adetermines visibility.\u000a Otherwise, we have wait for MapNotify/UnmapNotify.\u000a  The 'XMapWindow has been issued' criteria is tracked by new field\u000a'JavaWindow.isMapped'\u000a and set/cleared when we actually issue XMapWindow/XUnmapWindow!\u000a2) setVisible(true) not restoring from _NET_WM_STATE_HIDDEN\u000a It has been observed that restoring IconicState/_NET_WM_STATE_HIDDEN\u000a via XMapWindow or even NormalState may not work reliably on WMs.\u000a See\u000a<https://stackoverflow.com/questions/30192347/how-to-restore-a-window-with-xlib>\u000a  Hence we restore from this WM state via NormalState _and_\u000a_NET_ACTIVE_WINDOW.\u000aBoth strategies seem to work well on KDE as well as on Gnome.\u000a",
        "date" : "2015-10-08 20:13:12 +0200",
        "id" : "dca5d36370ec5eb44998bae593880e3b10cc9a4e",
        "msg" : "Bug 1249 - NEWT X11: setVisible(false) IconicState not listening to",
        "paths" : [
          {
            "editType" : "edit",
            "file" : "src/test/com/jogamp/opengl/test/junit/newt/parenting/TestParenting01NEWT.java"
          },
          {
            "editType" : "edit",
            "file" : "src/test/com/jogamp/opengl/test/junit/newt/TestGLWindows00NEWT.java"
          },
          {
            "editType" : "edit",
            "file" : "src/test/com/jogamp/opengl/test/junit/newt/TestGLWindows01NEWT.java"
          },
          {
            "editType" : "edit",
            "file" : "make/scripts/tests.sh"
          },
          {
            "editType" : "edit",
            "file" : "src/newt/classes/jogamp/newt/WindowImpl.java"
          },
          {
            "editType" : "edit",
            "file" : "src/newt/native/WindowsWindow.c"
          },
          {
            "editType" : "edit",
            "file" : "src/newt/native/X11Common.h"
          },
          {
            "editType" : "edit",
            "file" : "src/newt/native/X11Display.c"
          },
          {
            "editType" : "edit",
            "file" : "src/newt/native/X11Window.c"
          }
        ]
      },
      {
        "_class" : "hudson.plugins.git.GitChangeSet",
        "affectedPaths" : [
          "src/test/com/jogamp/opengl/test/junit/newt/parenting/TestParenting01NEWT.java",
          "src/newt/classes/jogamp/newt/WindowImpl.java",
          "src/newt/native/X11Window.c",
          "src/test/com/jogamp/opengl/test/junit/newt/TestGLWindows00NEWT.java",
          "src/newt/native/X11Display.c",
          "make/scripts/tests.sh",
          "src/newt/native/X11Common.h"
        ],
        "commitId" : "e418a665756af52fe2ca691ca220644e9b27c22c",
        "timestamp" : 1444348472000,
        "author" : {
          "absoluteUrl" : "https://jogamp.org/chuck/user/sven%20gothel",
          "fullName" : "Sven Gothel"
        },
        "authorEmail" : "sgothel@jausoft.com",
        "comment" : "Bug 1249 - NEWT X11: setVisible(*) _NET_WM_STATE_HIDDEN update not\u000areceived at ConfigureNotify event (2)\u000aOn gnome shell WM, sometimes KDE WM, it has been observed that the\u000a_NET_WM_STATE_HIDDEN update (visible or invisible) is not received at\u000aConfigureNotify event.\u000aTurns out the state is finally updated at FocusOut!\u000aThis change tests _NET_WM_STATE_HIDDEN visibility hint for mapped\u000awindow also for FocusIn and FocusOut events, besides the\u000aConfigureNotify event.\u000aFurther more, NormalState to restore a hidden but mapped window did not\u000awork, so it is no more being sent. We limit us here to\u000a_NET_ACTIVE_WINDOW.\u000a2 unit tests are prepared to test this issue:\u000a - TestGLWindows00NEWT\u000a - TestParenting01NEWT\u000a",
        "date" : "2015-10-09 01:54:32 +0200",
        "id" : "e418a665756af52fe2ca691ca220644e9b27c22c",
        "msg" : "Bug 1249 - NEWT X11: setVisible(*) _NET_WM_STATE_HIDDEN update not",
        "paths" : [
          {
            "editType" : "edit",
            "file" : "src/newt/native/X11Display.c"
          },
          {
            "editType" : "edit",
            "file" : "src/newt/classes/jogamp/newt/WindowImpl.java"
          },
          {
            "editType" : "edit",
            "file" : "src/newt/native/X11Window.c"
          },
          {
            "editType" : "edit",
            "file" : "make/scripts/tests.sh"
          },
          {
            "editType" : "edit",
            "file" : "src/newt/native/X11Common.h"
          },
          {
            "editType" : "edit",
            "file" : "src/test/com/jogamp/opengl/test/junit/newt/TestGLWindows00NEWT.java"
          },
          {
            "editType" : "edit",
            "file" : "src/test/com/jogamp/opengl/test/junit/newt/parenting/TestParenting01NEWT.java"
          }
        ]
      },
      {
        "_class" : "hudson.plugins.git.GitChangeSet",
        "affectedPaths" : [
          "make/scripts/tests.sh",
          "src/test/com/jogamp/opengl/test/junit/newt/parenting/TestParenting01NEWT.java"
        ],
        "commitId" : "8ce5203a581e731d5aa7d553455b04213d94115c",
        "timestamp" : 1444349007000,
        "author" : {
          "absoluteUrl" : "https://jogamp.org/chuck/user/sven%20gothel",
          "fullName" : "Sven Gothel"
        },
        "authorEmail" : "sgothel@jausoft.com",
        "comment" : "Bug 1249: Revert TestParenting01NEWT durationPerTest back to 600\u000a(otherwise breaks test)\u000a",
        "date" : "2015-10-09 02:03:27 +0200",
        "id" : "8ce5203a581e731d5aa7d553455b04213d94115c",
        "msg" : "Bug 1249: Revert TestParenting01NEWT durationPerTest back to 600",
        "paths" : [
          {
            "editType" : "edit",
            "file" : "src/test/com/jogamp/opengl/test/junit/newt/parenting/TestParenting01NEWT.java"
          },
          {
            "editType" : "edit",
            "file" : "make/scripts/tests.sh"
          }
        ]
      },
      {
        "_class" : "hudson.plugins.git.GitChangeSet",
        "affectedPaths" : [
          "src/newt/classes/jogamp/newt/WindowImpl.java",
          "src/newt/native/X11Display.c"
        ],
        "commitId" : "ecdaa59aa48c16a558ec7a0b50df9419a9ccedc1",
        "timestamp" : 1444350245000,
        "author" : {
          "absoluteUrl" : "https://jogamp.org/chuck/user/sven%20gothel",
          "fullName" : "Sven Gothel"
        },
        "authorEmail" : "sgothel@jausoft.com",
        "comment" : "Bug 1249 - NEWT X11: setVisible(false)\u000aIconicState/_NET_WM_STATE_HIDDEN: Handle case where KDE unmaps the\u000awindow\u000aUpdate our internal JavaWindow.isMapped according to MapNotify and\u000aUnmapNotify. This takes care of a situation (KDE) where a window is\u000aunmapped during IconicState.\u000aFor unmapped windows we cannot interprete _NET_WM_STATE_HIDDEN and we\u000ahave to issue XMapWindow for restoring the window.\u000a",
        "date" : "2015-10-09 02:24:05 +0200",
        "id" : "ecdaa59aa48c16a558ec7a0b50df9419a9ccedc1",
        "msg" : "Bug 1249 - NEWT X11: setVisible(false)",
        "paths" : [
          {
            "editType" : "edit",
            "file" : "src/newt/classes/jogamp/newt/WindowImpl.java"
          },
          {
            "editType" : "edit",
            "file" : "src/newt/native/X11Display.c"
          }
        ]
      },
      {
        "_class" : "hudson.plugins.git.GitChangeSet",
        "affectedPaths" : [
          "src/newt/classes/jogamp/newt/driver/awt/AWTCanvas.java"
        ],
        "commitId" : "108ff459c21ef04e541c714658b6b18f28e3c748",
        "timestamp" : 1444363458000,
        "author" : {
          "absoluteUrl" : "https://jogamp.org/chuck/user/sven%20gothel",
          "fullName" : "Sven Gothel"
        },
        "authorEmail" : "sgothel@jausoft.com",
        "comment" : "Bug 1247: Align NEWT AWT driver w/ GLCanvas (not fixing any issues)\u000a",
        "date" : "2015-10-09 06:04:18 +0200",
        "id" : "108ff459c21ef04e541c714658b6b18f28e3c748",
        "msg" : "Bug 1247: Align NEWT AWT driver w/ GLCanvas (not fixing any issues)",
        "paths" : [
          {
            "editType" : "edit",
            "file" : "src/newt/classes/jogamp/newt/driver/awt/AWTCanvas.java"
          }
        ]
      },
      {
        "_class" : "hudson.plugins.git.GitChangeSet",
        "affectedPaths" : [
          "src/nativewindow/classes/com/jogamp/nativewindow/awt/JAWTWindow.java"
        ],
        "commitId" : "0abf3c058b1ad7f43328a79098890149e6fa8a14",
        "timestamp" : 1444363580000,
        "author" : {
          "absoluteUrl" : "https://jogamp.org/chuck/user/sven%20gothel",
          "fullName" : "Sven Gothel"
        },
        "authorEmail" : "sgothel@jausoft.com",
        "comment" : "Bug 1247: Enhance JAWTWindow DEBUG output (not fixing any issues)\u000a",
        "date" : "2015-10-09 06:06:20 +0200",
        "id" : "0abf3c058b1ad7f43328a79098890149e6fa8a14",
        "msg" : "Bug 1247: Enhance JAWTWindow DEBUG output (not fixing any issues)",
        "paths" : [
          {
            "editType" : "edit",
            "file" : "src/nativewindow/classes/com/jogamp/nativewindow/awt/JAWTWindow.java"
          }
        ]
      },
      {
        "_class" : "hudson.plugins.git.GitChangeSet",
        "affectedPaths" : [
          "src/nativewindow/classes/com/jogamp/nativewindow/awt/JAWTWindow.java"
        ],
        "commitId" : "78bb597a06180c968ff5a10a7e3f44bd058965d6",
        "timestamp" : 1444363686000,
        "author" : {
          "absoluteUrl" : "https://jogamp.org/chuck/user/sven%20gothel",
          "fullName" : "Sven Gothel"
        },
        "authorEmail" : "sgothel@jausoft.com",
        "comment" : "Bug 1247: JAWTWindow fail early w/ useful info:\u000asetAWTGraphicsConfiguration(..) if awtConfig is null,\u000agetGraphicsConfiguration() if awtConfig is null\u000a",
        "date" : "2015-10-09 06:08:06 +0200",
        "id" : "78bb597a06180c968ff5a10a7e3f44bd058965d6",
        "msg" : "Bug 1247: JAWTWindow fail early w/ useful info:",
        "paths" : [
          {
            "editType" : "edit",
            "file" : "src/nativewindow/classes/com/jogamp/nativewindow/awt/JAWTWindow.java"
          }
        ]
      },
      {
        "_class" : "hudson.plugins.git.GitChangeSet",
        "affectedPaths" : [
          "src/newt/classes/jogamp/newt/driver/awt/WindowDriver.java",
          "make/scripts/tests.sh",
          "src/newt/classes/jogamp/newt/driver/awt/AWTCanvas.java"
        ],
        "commitId" : "c1594efa78951f187a75ec0b9a85cf64fba418d4",
        "timestamp" : 1444364040000,
        "author" : {
          "absoluteUrl" : "https://jogamp.org/chuck/user/sven%20gothel",
          "fullName" : "Sven Gothel"
        },
        "authorEmail" : "sgothel@jausoft.com",
        "comment" : "Bug 1247 - TestGearsNewtAWTWrapper fails AWT recreation case\u000aremoveNotify -> addNotify, e.g. by moving to other monitor\u000aAWTCanvas removeNotify didn't cause 'local' destruction of the NEWT\u000awindow, allowing a 'recreate' w/ subsequent addNotify.\u000aThis case has been hacked-into NEWT.AWT.WindowDriver + AWTCanvas:\u000a - suppression of window destroy events\u000a - keeping fields/states intact in NEWT.AWT.WindowDriver\u000a - propagating signals appropriately\u000aNote: This is barely a working hack and not a fine piece of software :)\u000aThis AWT backend driver exists only due to historical reasons.\u000aThis hack simply proves that JAWTWindow works properly.\u000a",
        "date" : "2015-10-09 06:14:00 +0200",
        "id" : "c1594efa78951f187a75ec0b9a85cf64fba418d4",
        "msg" : "Bug 1247 - TestGearsNewtAWTWrapper fails AWT recreation case",
        "paths" : [
          {
            "editType" : "edit",
            "file" : "make/scripts/tests.sh"
          },
          {
            "editType" : "edit",
            "file" : "src/newt/classes/jogamp/newt/driver/awt/AWTCanvas.java"
          },
          {
            "editType" : "edit",
            "file" : "src/newt/classes/jogamp/newt/driver/awt/WindowDriver.java"
          }
        ]
      }
    ],
    "kind" : "git"
  },
  "culprits" : [
    {
      "absoluteUrl" : "https://jogamp.org/chuck/user/sgothel",
      "fullName" : "Sven Gothel"
    }
  ]
}