< prev index next >

test/failure_handler/src/share/conf/solaris.properties

Print this page
rev 58859 : 8240904: Screen flashes on test failures when running tests from make
Reviewed-by: erikj, serb

@@ -1,7 +1,7 @@
 #
-# Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
+# Copyright (c) 2015, 2020, Oracle and/or its affiliates. All rights reserved.
 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 #
 # This code is free software; you can redistribute it and/or modify it
 # under the terms of the GNU General Public License version 2 only, as
 # published by the Free Software Foundation.

@@ -62,11 +62,12 @@
   disk \
   env \
   system.dmesg system.prtconf system.sysdef \
   process.ps process.top \
   memory.swap memory.vmstat.default memory.vmstat.statistics memory.pagesize \
-  net.netstat.av net.netstat.m net.netstat.s net.netstat.i net.ifconfig
+  net.netstat.av net.netstat.m net.netstat.s net.netstat.i net.ifconfig \
+  screenshot
 ################################################################################
 # common unix
 ################################################################################
 users.current.app=id
 users.current.args=-a

@@ -108,6 +109,18 @@
 net.netstat.m.args=-m
 net.netstat.s.args=-s
 net.netstat.i.args=-i 1 5
 net.ifconfig.app=/sbin/ifconfig
 net.ifconfig.args=-a
+
+screenshot.app=bash
+screenshot.args=-c\0\
+    echo '\
+        var robot = new java.awt.Robot();\
+        var ge = java.awt.GraphicsEnvironment.getLocalGraphicsEnvironment();\
+        var bounds = ge.getDefaultScreenDevice().getDefaultConfiguration().getBounds();\
+        var capture = robot.createScreenCapture(bounds);\
+        var file = new java.io.File("screen.png");\
+        javax.imageio.ImageIO.write(capture, "png", file);\
+    ' | jshell -
+screenshot.args.delimiter=\0
 ################################################################################
< prev index next >