From 0c9e2226583ec2f3206e47a331d0cb98d13c48e2 Mon Sep 17 00:00:00 2001 From: Sebastian Schmitt Date: Tue, 23 Jun 2026 14:07:14 +0200 Subject: [PATCH 1/2] Demonstrate how to list individual test results Signed-off-by: Sebastian Schmitt --- docs/tutorial.rst | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/docs/tutorial.rst b/docs/tutorial.rst index fb237342f..ddff63e30 100644 --- a/docs/tutorial.rst +++ b/docs/tutorial.rst @@ -2275,6 +2275,24 @@ You can also combine :option:`--list-stored-testcases` and :option:`--describe-s reframe --list-stored-testcases=now-1d:now/mean:/ -n stream_test% -E 'num_threads == 2' +To list individual results from past tests, artificially aggregate on a unique field, e.g., `uuid`: + +.. code-block:: bash + :caption: Run in the single-node container. + + reframe --list-stored-testcases=now-1d:now/mean:uuid/name,sysenv,pvar,punit,pval + +.. code-block:: console + + name sysenv pvar punit pval (mean) + ----------- ----------------------- ---------------- ------- ------------- + stream_test generic:default+builtin copy_bw|triad_bw MB/s 28583.8 + stream_test generic:default+builtin copy_bw|triad_bw MB/s 28281.3 + ... + stream_test generic:default+builtin copy_bw|triad_bw MB/s 28539.7 + stream_test generic:default+builtin copy_bw|triad_bw MB/s 28755.4 + +Note that although `pval` is annotated with the aggregation function `mean` in the output, it is not applied to the variable. Comparing performance of test cases ----------------------------------- From e6852b14db0ddc267a09f714acafef8be685b18f Mon Sep 17 00:00:00 2001 From: Sebastian Schmitt Date: Wed, 24 Jun 2026 14:30:43 +0200 Subject: [PATCH 2/2] Address comment Signed-off-by: Sebastian Schmitt --- docs/tutorial.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tutorial.rst b/docs/tutorial.rst index ddff63e30..e08ee29a5 100644 --- a/docs/tutorial.rst +++ b/docs/tutorial.rst @@ -2275,7 +2275,8 @@ You can also combine :option:`--list-stored-testcases` and :option:`--describe-s reframe --list-stored-testcases=now-1d:now/mean:/ -n stream_test% -E 'num_threads == 2' -To list individual results from past tests, artificially aggregate on a unique field, e.g., `uuid`: +To list individual results from past tests, you can aggregate on a unique field, e.g., `uuid`. +Since the value is unique, the aggregation will just return the value: .. code-block:: bash :caption: Run in the single-node container. @@ -2292,7 +2293,6 @@ To list individual results from past tests, artificially aggregate on a unique f stream_test generic:default+builtin copy_bw|triad_bw MB/s 28539.7 stream_test generic:default+builtin copy_bw|triad_bw MB/s 28755.4 -Note that although `pval` is annotated with the aggregation function `mean` in the output, it is not applied to the variable. Comparing performance of test cases -----------------------------------