Skip to content

Commit 11c3603

Browse files
authored
Merge branch 'master' into feat/change-default-autodetection
2 parents 884c9fa + ee3844d commit 11c3603

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

docs/config_reference.rst

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -862,8 +862,10 @@ All logging handlers share the following set of common attributes:
862862
``%(check_executable)s``, The value of the :attr:`~reframe.core.pipeline.RegressionTest.executable` attribute.
863863
``%(check_executable_opts)s``, The value of the :attr:`~reframe.core.pipeline.RegressionTest.executable_opts` attribute.
864864
``%(check_extra_resources)s``, The value of the :attr:`~reframe.core.pipeline.RegressionTest.extra_resources` attribute.
865-
``%(check_job_completion_time_unix)s``, The completion time of the associated run job (see :attr:`reframe.core.schedulers.Job.completion_time`).
865+
``%(check_hashcode)s``, The unique hash associated with this test.
866+
``%(check_info)s``, Various information about this test; essentially the return value of the test's :func:`~reframe.core.pipeline.RegressionTest.info` function.
866867
``%(check_job_completion_time)s``, Same as the ``(check_job_completion_time_unix)s`` but formatted according to ``datefmt``.
868+
``%(check_job_completion_time_unix)s``, The completion time of the associated run job (see :attr:`reframe.core.schedulers.Job.completion_time`).
867869
``%(check_job_exitcode)s``, The exit code of the associated run job.
868870
``%(check_job_nodelist)s``, The list of nodes that the associated run job has run on.
869871
``%(check_jobid)s``, The ID of the associated run job.
@@ -881,13 +883,20 @@ All logging handlers share the following set of common attributes:
881883
``%(check_num_tasks_per_socket)s``, The value of the :attr:`~reframe.core.pipeline.RegressionTest.num_tasks_per_socket` attribute.
882884
``%(check_outputdir)s``, The value of the :attr:`~reframe.core.pipeline.RegressionTest.outputdir` attribute.
883885
``%(check_partition)s``, The name of the test's :attr:`~reframe.core.pipeline.RegressionTest.current_partition`.
884-
``%(check_perfvalues)s``, The value of the :attr:`~reframe.core.pipeline.RegressionTest.perfvalues` attribute.
886+
``%(check_perf_lower_thres)s``, The lower threshold of the logged performance variable.
887+
``%(check_perf_ref)s``, The reference value of the logged performance variable.
888+
``%(check_perf_unit)s``, The measurement unit of the logged performance variable.
889+
``%(check_perf_upper)s``, The upper thresholds of the logged performance variable.
890+
``%(check_perf_value)s``, The actual value of the logged performance variable.
891+
``%(check_perf_var)s``, The name of the logged performance variable.
892+
``%(check_perfvalues)s``, All the performance variables of the test combined along with their values, references and thresholds.
885893
``%(check_postbuild_cmds)s``, The value of the :attr:`~reframe.core.pipeline.RegressionTest.postbuild_cmds` attribute.
886894
``%(check_postrun_cmds)s``, The value of the :attr:`~reframe.core.pipeline.RegressionTest.postrun_cmds` attribute.
887895
``%(check_prebuild_cmds)s``, The value of the :attr:`~reframe.core.pipeline.RegressionTest.prebuild_cmds` attribute.
888896
``%(check_prefix)s``, The value of the :attr:`~reframe.core.pipeline.RegressionTest.prefix` attribute.
889897
``%(check_prerun_cmds)s``, The value of the :attr:`~reframe.core.pipeline.RegressionTest.prerun_cmds` attribute.
890898
``%(check_readonly_files)s``, The value of the :attr:`~reframe.core.pipeline.RegressionTest.readonly_files` attribute.
899+
``%(check_short_name)s``, The value of the :attr:`~reframe.core.pipeline.RegressionTest.short_name` attribute.
891900
``%(check_sourcepath)s``, The value of the :attr:`~reframe.core.pipeline.RegressionTest.sourcepath` attribute.
892901
``%(check_sourcesdir)s``, The value of the :attr:`~reframe.core.pipeline.RegressionTest.sourcesdir` attribute.
893902
``%(check_stagedir)s``, The value of the :attr:`~reframe.core.pipeline.RegressionTest.stagedir` attribute.

0 commit comments

Comments
 (0)