test_options_t Derived Type

type, public :: test_options_t


Components

Type Visibility Attributes Name Initial
logical, public :: verbose = .false.
logical, public :: quiet = .false.
character(len=256), public :: filter = ""
integer, public :: max_threads = 0

Source Code

    type :: test_options_t
        logical :: verbose = .false.
        logical :: quiet = .false.
        character(len=256) :: filter = ""
        integer :: max_threads = 0  ! 0 = use all available
    end type test_options_t