]> git.proxmox.com Git - mirror_zfs.git/blame - tests/zfs-tests/tests/functional/cli_user/misc/arc_summary3_001_pos.ksh
pyzfs: python3 support (build system)
[mirror_zfs.git] / tests / zfs-tests / tests / functional / cli_user / misc / arc_summary3_001_pos.ksh
CommitLineData
19528cf9
SS
1#! /bin/ksh -p
2#
3# CDDL HEADER START
4#
5# The contents of this file are subject to the terms of the
6# Common Development and Distribution License (the "License").
7# You may not use this file except in compliance with the License.
8#
9# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10# or http://www.opensolaris.org/os/licensing.
11# See the License for the specific language governing permissions
12# and limitations under the License.
13#
14# When distributing Covered Code, include this CDDL HEADER in each
15# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16# If applicable, add the following below this CDDL HEADER, with the
17# fields enclosed by brackets "[]" replaced with your own identifying
18# information: Portions Copyright [yyyy] [name of copyright owner]
19#
20# CDDL HEADER END
21#
22
23#
24# Copyright (c) 2015 by Lawrence Livermore National Security, LLC.
25# All rights reserved.
26#
27
28. $STF_SUITE/include/libtest.shlib
29
30# Keep the following test until Python 3 is installed on all test systems,
31# then remove
32python3 -V 2>&1 > /dev/null
33if (( $? )); then
34 log_unsupported "Python3 is not installed"
35fi
36
37
38# Some systems have Python 3 installed, but only older versions that don't
39# have the subprocess.run() functionality. We catch these with a separate
40# test. Remove this when all systems have reached 3.5 or greater
41VERSIONPYTEST=$(python3 -V)
42if [[ ${VERSIONPYTEST:9:1} -lt 5 ]]; then
43 log_unsupported "Python3 must be version 3.5 or greater"
44fi
45
46
47set -A args "" "-a" "-d" "-p 1" "-g" "-s arc" "-r"
6e72a5b9 48log_assert "arc_summary3 generates output and doesn't return an error code"
19528cf9
SS
49
50typeset -i i=0
51while [[ $i -lt ${#args[*]} ]]; do
6e72a5b9 52 log_must eval "arc_summary3 ${args[i]} > /dev/null"
19528cf9
SS
53 ((i = i + 1))
54done
55
6e72a5b9 56log_pass "arc_summary3 generates output and doesn't return an error code"