10 #
11 # This code is distributed in the hope that it will be useful, but WITHOUT
12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 # version 2 for more details (a copy is included in the LICENSE file that
15 # accompanied this code).
16 #
17 # You should have received a copy of the GNU General Public License version
18 # 2 along with this work; if not, write to the Free Software Foundation,
19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 #
21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22 # or visit www.oracle.com if you need additional information or have any
23 # questions.
24 #
25
26
27 # @test
28 # @summary Try to force GTK3. We must bail out to GTK2 if no 3 available.
29 #
30 # @compile ProvokeGTK.java
31 # @requires os.family == "linux"
32 # @run shell/timeout=400 DemandGTK3.sh
33
34 #
35 # Note that we depend on
36 # strace in the PATH
37 # /sbin/ldconfig (which may be is not in PATH)
38 # It is true for OEL 7 and Ubuntu 14, 16
39 # but may fail in future. Save tomorrow for tomorrow.
40 #
41
42 which strace
43 if [ $? -ne 0 ]
44 then
45 echo "Please provide strace: \"which strace\" failed."
46 exit 1
47 fi
48
49 HAVE_3=`/sbin/ldconfig -v 2>/dev/null | grep libgtk-3.so | wc -l`
|
10 #
11 # This code is distributed in the hope that it will be useful, but WITHOUT
12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 # version 2 for more details (a copy is included in the LICENSE file that
15 # accompanied this code).
16 #
17 # You should have received a copy of the GNU General Public License version
18 # 2 along with this work; if not, write to the Free Software Foundation,
19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 #
21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22 # or visit www.oracle.com if you need additional information or have any
23 # questions.
24 #
25
26
27 # @test
28 # @summary Try to force GTK3. We must bail out to GTK2 if no 3 available.
29 #
30 # @key headful
31 # @compile ProvokeGTK.java
32 # @requires os.family == "linux"
33 # @run shell/timeout=400 DemandGTK3.sh
34
35 #
36 # Note that we depend on
37 # strace in the PATH
38 # /sbin/ldconfig (which may be is not in PATH)
39 # It is true for OEL 7 and Ubuntu 14, 16
40 # but may fail in future. Save tomorrow for tomorrow.
41 #
42
43 which strace
44 if [ $? -ne 0 ]
45 then
46 echo "Please provide strace: \"which strace\" failed."
47 exit 1
48 fi
49
50 HAVE_3=`/sbin/ldconfig -v 2>/dev/null | grep libgtk-3.so | wc -l`
|