Home
last modified time | relevance | path

Searched +full:coverage +full:- +full:disable (Results 1 – 4 of 4) sorted by relevance

/petsc/
H A D.gitlab-ci.yml2 # stage-1 take only a few minutes; they do not run the full test suite or external packages.
4 # stage-2 runs on MCS systems and may take 10 to 15 minutes. They run the full test suite but with …
6 # stage-3 runs on MCS systems and may take an hour or more. They run the full test suite and heavil…
8 # The stage-(n) tests are only started if all of the stage-(n-1) tests run without error
13 - stage-1
14 - stage-2
15 - stage-3
16 - stage-4
19 GIT_CLEAN_FLAGS: -ffdxq
21 BASE_EXTRA_OPTIONS: -nox -nox_warning -malloc_dump
[all …]
/petsc/config/PETSc/
H A DConfigure.py23 ' Code coverage: yes',
24 ' Using code coverage executable: {}'.format(self.getMakeMacro('PETSC_COVERAGE_EXEC'))
27 banner_middle = '=' * (logger.get_global_divider_length() - 2 * len(banner_ends))
40 …help.addArgument('PETSc', '-prefix=<dir>', nargs.Arg(None, '', 'Spec…
41 …help.addArgument('PETSc', '-with-prefetch=<bool>', nargs.ArgBool(None, 1,'En…
42 …help.addArgument('Windows','-with-windows-graphics=<bool>', nargs.ArgBool(None, 1,'En…
43 …help.addArgument('PETSc', '-with-default-arch=<bool>', nargs.ArgBool(None, 1, 'A…
44 …p.addArgument('PETSc','-with-single-library=<bool>', nargs.ArgBool(None, 1,'Put a…
45 …help.addArgument('PETSc','-with-fortran-bindings=<bool>', nargs.ArgBool(None, 1,'Bu…
46 …help.addArgument('PETSc', '-with-library-name-suffix=<string>', nargs.Arg(None, '', 'Add …
[all …]
/petsc/lib/petsc/bin/maint/
H A Dgcov.py3 # Created: Wed Oct 5 18:31:45 2022 (-0400)
20 # see https://gcovr.com/en/stable/output/json.html#json-output
130 raw_output = subprocess_check_output(['gcovr', '--version'])
144 'gcovr', '-j', '4', '--root', self.petsc_dir, '--exclude-throw-branches',
145 '--exclude-unreachable-branches'
148 base_args.append('--verbose')
152 if version < (5,) and '--html-self-contained' in args:
153 # --html-self-contained since gcovr 5.0
154 args.remove('--html-self-contained')
155 if version < (5,1) and '--decisions' in args:
[all …]
/petsc/config/BuildSystem/config/
H A Dpackage.py13 s -> (s0,s1,...s[n-1]), (s1,s2,...,sn), ...
42 …= None # path of the package installation point; for example /usr/local or /home/bsmith/mpich-2.0.1
44 … = '' # the version of the package that PETSc will build with the --download-package option
60 … # cannot tell the difference between user requiring it with --with-PACKAGE=1 and
66 …self.gitcommitmain = None # Git commit to use for petsc/main or similar non-release branc…
67 …ile = None # File within the git clone - that has the gitcommit for the current build…
79 … = 0 # 1 means the symbols in self.functions are Fortran symbols, so name-mangling is done
80 …, ''] # 1 means the symbols in self.functions symbol are C++ symbol, so name-mangling with prototy…
89 self.downloadonWindows = 0 # 1 means the --download-package works on Microsoft Windows
92 …self.publicInstall = 1 # Installs the package in the --prefix directory if it was given.…
[all …]