Performance Checks¶
Defining Metrics¶
buildtest provides a method to define test metrics in the buildspecs which can be used to
store arbitrary content from the output/error file or an arbitrary file into named metric. The
metrics
property is used to define a list of metric names using regular expression to assign a value
to the metric. In this example, we have two tests that define metrics hpcg_rate_stream
, hpcg_state_stream
in the first test and hpcg_rate_file
, hpcg_state_file
in the second test. The stream
property is used
to read from stdout/stderr and apply the regular expression defined by exp
, whereas file_regex
is used
to define metrics from an arbitrary file where file
is the path to file.
buildspecs:
metric_regex_example:
executor: generic.local.bash
type: script
description: capture result metric from output
run: echo "HPCG result is VALID with a GFLOP/s rating of=63.6515"
tags: tutorials
metrics:
hpcg_rating_stream:
type: float
regex:
exp: '(\d+\.\d+)$'
stream: stdout
hpcg_state_stream:
type: str
regex:
exp: '(VALID)'
stream: stdout
metric_file_regex:
executor: generic.local.bash
type: script
description: capture result metric from file path
run: echo "HPCG result is VALID with a GFLOP/s rating of=63.6515" > hpcg.txt
tags: tutorials
metrics:
hpcg_rating_file:
type: float
file_regex:
exp: '(\d+\.\d+)$'
file: hpcg.txt
hpcg_state_file:
type: str
file_regex:
exp: '(VALID)'
file: hpcg.txt
The metrics can be used with Comparison Operators for performing more sophisticated status checks.
By default, a metric will be an empty dictionary if there is no metrics
property. If we fail to match
a regular expression, the metric will be defined as an empty string (''
).
Note
If your regular expression contains an escape character \
you must surround your
string in single quotes '
as pose to double quotes "
Let’s build this test.
buildtest build -b tutorials/metrics/metrics_regex.yml
$ buildtest build -b tutorials/metrics/metrics_regex.yml
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│ │
│ User: docs │
│ Hostname: build-19845526-project-280831-buildtest │
│ Platform: Linux │
│ Current Time: 2023/03/20 23:00:18 │
│ buildtest path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version: 1.3 │
│ python path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version: 3.7.15 │
│ Configuration File: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Test Directory: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Report File: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Command: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ │
╰──────────────────────────────────────────────────────────────────────────────╯
─────────────────────────── Discovering Buildspecs ────────────────────────────
Discovered buildspecs
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest… ║
╚══════════════════════════════════════════════════════════════════════════════╝
Total Discovered Buildspecs: 1
Total Excluded Buildspecs: 0
Detected Buildspecs after exclusion: 1
────────────────────────────── Parsing Buildspecs ──────────────────────────────
Valid Buildspecs: 1
Invalid Buildspecs: 0
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/tutorials/metrics/metrics_regex.yml: VALID
Total builder objects created: 2
Builders by type=script
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ builder ┃ type ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ descrip… ┃ builds… ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ metric_… │ script │ generic… │ None │ None │ None │ capture │ /home/… │
│ │ │ │ │ │ │ result │ │
│ │ │ │ │ │ │ metric │ │
│ │ │ │ │ │ │ from │ │
│ │ │ │ │ │ │ output │ │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ metric_… │ script │ generic… │ None │ None │ None │ capture │ /home/… │
│ │ │ │ │ │ │ result │ │
│ │ │ │ │ │ │ metric │ │
│ │ │ │ │ │ │ from │ │
│ │ │ │ │ │ │ file │ │
│ │ │ │ │ │ │ path │ │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
metric_regex_example/82e0ac41: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/metrics_regex/metric_regex_example/82e0ac41
metric_regex_example/82e0ac41: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/metrics_regex/metric_regex_example/82e0ac41/stage
metric_regex_example/82e0ac41: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/metrics_regex/metric_regex_example/82e0ac41/metric_regex_example_build.sh
metric_file_regex/524e5006: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/metrics_regex/metric_file_regex/524e5006
metric_file_regex/524e5006: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/metrics_regex/metric_file_regex/524e5006/stage
metric_file_regex/524e5006: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/metrics_regex/metric_file_regex/524e5006/metric_file_regex_build.sh
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
metric_regex_example/82e0ac41 does not have any dependencies adding test to queue
metric_file_regex/524e5006 does not have any dependencies adding test to queue
metric_regex_example/82e0ac41: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/metrics_regex/metric_regex_example/82e0ac41/stage
metric_regex_example/82e0ac41: Running Test via command: bash --norc --noprofile -eo pipefail metric_regex_example_build.sh
metric_regex_example/82e0ac41: Test completed in 0.005767 seconds
metric_regex_example/82e0ac41: Test completed with returncode: 0
metric_regex_example/82e0ac41: Writing output file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/metrics_regex/metric_regex_example/82e0ac41/metric_regex_example.out
metric_regex_example/82e0ac41: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/metrics_regex/metric_regex_example/82e0ac41/metric_regex_example.err
metric_file_regex/524e5006: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/metrics_regex/metric_file_regex/524e5006/stage
metric_file_regex/524e5006: Running Test via command: bash --norc --noprofile -eo pipefail metric_file_regex_build.sh
metric_file_regex/524e5006: Test completed in 0.005309 seconds
metric_file_regex/524e5006: Test completed with returncode: 0
metric_file_regex/524e5006: Writing output file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/metrics_regex/metric_file_regex/524e5006/metric_file_regex.out
metric_file_regex/524e5006: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/metrics_regex/metric_file_regex/524e5006/metric_file_regex.err
In this iteration we are going to run the following tests: [metric_regex_example/82e0ac41, metric_file_regex/524e5006]
Test Summary
┏━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━┓
┃ ┃ ┃ ┃ checks ┃ ┃ ┃
┃ ┃ ┃ ┃ (ReturnCode, ┃ ┃ ┃
┃ ┃ ┃ ┃ Regex, ┃ ┃ ┃
┃ builder ┃ executor ┃ status ┃ Runtime) ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━┩
│ metric_file_ │ generic.loc… │ PASS │ N/A N/A N/A │ 0 │ 0.005309 │
│ regex/524e50 │ │ │ │ │ │
│ 06 │ │ │ │ │ │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ metric_regex │ generic.loc… │ PASS │ N/A N/A N/A │ 0 │ 0.005767 │
│ _example/82e │ │ │ │ │ │
│ 0ac41 │ │ │ │ │ │
└──────────────┴──────────────┴────────┴───────────────┴────────────┴──────────┘
Passed Tests: 2/2 Percentage: 100.000%
Failed Tests: 0/2 Percentage: 0.000%
Adding 2 test results to /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/report.json
Writing Logfile to: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/logs/buildtest_krf1dbos.log
The metrics are captured in the test report which can
be queried via buildtest report
or buildtest inspect query
. Metrics can be seen in the test metadata,
for instance you can run buildtest inspect query
and you will see metrics shown in table output.
buildtest inspect query metric_regex_example metric_file_regex
$ buildtest inspect query metric_regex_example metric_file_regex
──────────── metric_file_regex/524e5006-f742-4086-b02d-dec685445ffa ────────────
Executor: generic.local.bash
Description: capture result metric from file path
State: PASS
Returncode: 0
Runtime: 0.005309 sec
Starttime: 2023/03/20 23:00:18
Endtime: 2023/03/20 23:00:18
Command: bash --norc --noprofile -eo pipefail metric_file_regex_build.sh
Test Script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/metrics_regex/metric_file_regex/524e5006/metric_file_regex.sh
Build Script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/metrics_regex/metric_file_regex/524e5006/metric_file_regex_build.sh
Output File: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/metrics_regex/metric_file_regex/524e5006/metric_file_regex.out
Error File: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/metrics_regex/metric_file_regex/524e5006/metric_file_regex.err
Log File: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/logs/buildtest_krf1dbos.log
Metrics
┏━━━━━━━━━━━━━━━━━━┳━━━━━━━━━┓
┃ Name ┃ Value ┃
┡━━━━━━━━━━━━━━━━━━╇━━━━━━━━━┩
│ hpcg_rating_file │ 63.6515 │
│ hpcg_state_file │ VALID │
└──────────────────┴─────────┘
────────── metric_regex_example/82e0ac41-120e-41f8-9f9d-02dfa0ffc612 ───────────
Executor: generic.local.bash
Description: capture result metric from output
State: PASS
Returncode: 0
Runtime: 0.005767 sec
Starttime: 2023/03/20 23:00:18
Endtime: 2023/03/20 23:00:18
Command: bash --norc --noprofile -eo pipefail metric_regex_example_build.sh
Test Script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/metrics_regex/metric_regex_example/82e0ac41/metric_regex_example.sh
Build Script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/metrics_regex/metric_regex_example/82e0ac41/metric_regex_example_build.sh
Output File: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/metrics_regex/metric_regex_example/82e0ac41/metric_regex_example.out
Error File: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/metrics_regex/metric_regex_example/82e0ac41/metric_regex_example.err
Log File: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/logs/buildtest_krf1dbos.log
Metrics
┏━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━┓
┃ Name ┃ Value ┃
┡━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━┩
│ hpcg_rating_stream │ 63.6515 │
│ hpcg_state_stream │ VALID │
└────────────────────┴─────────┘
We can query the metrics via buildtest report
which will display all metrics as a comma seperated
Key/Value pair. We can use buildtest report --format metrics
to extract all metrics for a test.
Internally, we store the metrics as a dictionary but when we print them out via buildtest report
we
join them together into a single string. Shown below is the metrics for the previous build.
buildtest report --filter buildspec=tutorials/metrics/metrics_regex.yml --format name,metrics
$ buildtest report --filter buildspec=tutorials/metrics/metrics_regex.yml --format name,metrics
Report File: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/report.json
┏━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ name ┃ metrics ┃
┡━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ metric_file_regex │ hpcg_rating_file=63.6515,hpcg_state_file=VALID │
├───────────────────────┼──────────────────────────────────────────────────────┤
│ metric_regex_example │ hpcg_rating_stream=63.6515,hpcg_state_stream=VALID │
└───────────────────────┴──────────────────────────────────────────────────────┘
Invalid Metrics¶
We will discuss a few edge-cases when defining metrics that can lead to validation error. The file_regex and
regex property can’t be declared at the same time when defining a metric. In example below
we have defined a metric named hello
that uses both regex
and file_regex
.
buildspecs:
metrics_with_regex_and_file_regex_not_allowed:
type: script
executor: generic.local.bash
description: This is an invalid metric because 'file_regex' and 'regex' are both specified
run: echo "hello" > file.txt
metrics:
hello:
type: str
file_regex:
file: file.txt
exp: "BAR"
regex:
stream: stdout
exp: "BAR"
If we try to validate this buildspec, we will get an error message that regex
and file_regex
can’t be specified
at the same time.
buildtest buildspec validate -b tutorials/metrics/invalid_metrics.yml
$ buildtest buildspec validate -b tutorials/metrics/invalid_metrics.yml
─ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest… ─
{'type': 'str', 'file_regex': {'file': 'file.txt', 'exp': 'BAR'}, 'regex': {'stream': 'stdout', 'exp': 'BAR'}} is valid under each of {'required': ['file_regex']}, {'required': ['regex']}
Failed validating 'oneOf' in schema['properties']['metrics']['additionalProperties']:
{'additionalProperties': False,
'oneOf': [{'required': ['regex']}, {'required': ['file_regex']}],
'properties': {'file_regex': {'$ref': '#/definitions/file_regex_in_metrics'},
'regex': {'$ref': '#/definitions/regex'},
'type': {'description': 'Specify python data-type '
'(str, int, float) to convert '
'metric. ',
'enum': ['str', 'int', 'float'],
'type': 'string'}},
'required': ['type'],
'type': 'object'}
On instance['metrics']['hello']:
{'file_regex': {'exp': 'BAR', 'file': 'file.txt'},
'regex': {'exp': 'BAR', 'stream': 'stdout'},
'type': 'str'}
1 buildspecs failed to validate
When defining a metrics, you must specify regex
or file_regex
property in order to capture metric. If its not
specified, you will run into validation error. In this example, we define a metrics named foo
, but we don’t
specify the regex
or file_regex
property therefore, this metric is invalid.
buildspecs:
required_property_in_metrics:
type: script
executor: generic.local.bash
description: metrics must have a file_regex or regex property to define how to capture metric
run: echo "hello"
metrics:
foo:
type: str
The metrics must follow a pattern, this is typically alphanumeric characters including dot (.
), hypen (-
)
and underscore (_
). In this example below, we have an invalid metric that doesn’t conform to pattern.
buildspecs:
invalid_metrics_name:
type: script
executor: generic.local.bash
description: "Metrics name does not follow pattern"
run: echo "hello" > file.txt
metrics:
(foo-bar:
type: str
regex:
stream: stdout
exp: "BAR"
Let’s try validating the buildspec to see the error message.
buildtest buildspec validate -b tutorials/metrics/invalid_metric_name.yml
$ buildtest buildspec validate -b tutorials/metrics/invalid_metric_name.yml
─ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest… ─
'(foo-bar' does not match '^[A-Za-z0-9_.-]+$'
Failed validating 'pattern' in schema['properties']['metrics']['propertyNames']:
{'pattern': '^[A-Za-z0-9_.-]+$'}
On instance['metrics']:
'(foo-bar'
1 buildspecs failed to validate
Comparison Operators¶
buildtest supports several comparison operators as part of status check such as >, >=, <=, <, ==, !=. Each metric is compared with a reference value that can be useful when running performance checks. In this section we will cover the following comparison:
Greater Equal¶
buildtest can determine status check based on performance check. In this next example, we will run the
STREAM memory benchmark and capture metrics named copy
, scale
add
and triad
from the output and perform an Assertion Greater Equal (assert_ge
) with a reference value.
The assert_ge
contains a list of assertions where each metric name is
referenced via name
that is compared with the reference value defined by ref
property. The comparison
is metric_value >= ref
, where metric_value is the value assigned to the metric name captured by the regular
expression. The type
field in the metric section is used for the type conversion which can be float, int, or string.
The item
is a numeric field used in match.group to retrieve the output
from the regular expression search. The item must be non-negative number.
1buildspecs:
2 stream_test:
3 type: script
4 executor: generic.local.bash
5 description: Run stream test with metrics example using assert greater equal
6 env:
7 OMP_NUM_THREADS: 4
8 run: |
9 wget https://raw.githubusercontent.com/jeffhammond/STREAM/master/stream.c
10 gcc -openmp -o stream stream.c
11 ./stream
12 metrics:
13 copy:
14 type: float
15 regex:
16 exp: 'Copy:\s+(\S+)\s+.*'
17 stream: stdout
18 item: 1
19 scale:
20 type: float
21 regex:
22 exp: 'Scale:\s+(\S+)\s+.*'
23 stream: stdout
24 item: 1
25 add:
26 type: float
27 regex:
28 exp: 'Add:\s+(\S+)\s+.*'
29 stream: stdout
30 item: 1
31 triad:
32 type: float
33 regex:
34 exp: 'Triad:\s+(\S+)\s+.*'
35 stream: stdout
36 item: 1
37 status:
38 assert_ge:
39 - name: copy
40 ref: 5000
41 - name: scale
42 ref: 5500
43 - name: add
44 ref: 6000
45 - name: triad
46 ref: 6500
buildtest will evaluate each assertion in the list and use a logical AND to determine the final
status of assert_ge
.
Let’s build this test, take a close look at the output of buildtest build
and take note of the assertion
statement.
buildtest build -b tutorials/perf_checks/assert_ge.yml
$ buildtest build -b tutorials/perf_checks/assert_ge.yml
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│ │
│ User: docs │
│ Hostname: build-19845526-project-280831-buildtest │
│ Platform: Linux │
│ Current Time: 2023/03/20 23:00:21 │
│ buildtest path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version: 1.3 │
│ python path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version: 3.7.15 │
│ Configuration File: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Test Directory: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Report File: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Command: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ │
╰──────────────────────────────────────────────────────────────────────────────╯
─────────────────────────── Discovering Buildspecs ────────────────────────────
Discovered buildspecs
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest… ║
╚══════════════════════════════════════════════════════════════════════════════╝
Total Discovered Buildspecs: 1
Total Excluded Buildspecs: 0
Detected Buildspecs after exclusion: 1
────────────────────────────── Parsing Buildspecs ──────────────────────────────
Valid Buildspecs: 1
Invalid Buildspecs: 0
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/tutorials/perf_checks/assert_ge.yml: VALID
Total builder objects created: 1
Builders by type=script
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ builder ┃ type ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ descrip… ┃ builds… ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ stream_… │ script │ generic… │ None │ None │ None │ Run │ /home/… │
│ │ │ │ │ │ │ stream │ │
│ │ │ │ │ │ │ test │ │
│ │ │ │ │ │ │ with │ │
│ │ │ │ │ │ │ metrics │ │
│ │ │ │ │ │ │ example │ │
│ │ │ │ │ │ │ using │ │
│ │ │ │ │ │ │ assert │ │
│ │ │ │ │ │ │ greater │ │
│ │ │ │ │ │ │ equal │ │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
stream_test/2b8a5490: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/assert_ge/stream_test/2b8a5490
stream_test/2b8a5490: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/assert_ge/stream_test/2b8a5490/stage
stream_test/2b8a5490: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/assert_ge/stream_test/2b8a5490/stream_test_build.sh
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
stream_test/2b8a5490 does not have any dependencies adding test to queue
stream_test/2b8a5490: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/assert_ge/stream_test/2b8a5490/stage
stream_test/2b8a5490: Running Test via command: bash --norc --noprofile -eo pipefail stream_test_build.sh
stream_test/2b8a5490: Test completed in 1.465659 seconds
stream_test/2b8a5490: Test completed with returncode: 0
stream_test/2b8a5490: Writing output file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/assert_ge/stream_test/2b8a5490/stream_test.out
stream_test/2b8a5490: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/assert_ge/stream_test/2b8a5490/stream_test.err
stream_test/2b8a5490: testing metric: copy if 5889.7 >= 5000.0 - Check: True
stream_test/2b8a5490: testing metric: scale if 6721.3 >= 5500.0 - Check: True
stream_test/2b8a5490: testing metric: add if 8848.9 >= 6000.0 - Check: True
stream_test/2b8a5490: testing metric: triad if 8495.9 >= 6500.0 - Check: True
stream_test/2b8a5490: Greater Equal Check: True
In this iteration we are going to run the following tests: [stream_test/2b8a5490]
Test Summary
┏━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━┓
┃ ┃ ┃ ┃ checks ┃ ┃ ┃
┃ ┃ ┃ ┃ (ReturnCode, ┃ ┃ ┃
┃ ┃ ┃ ┃ Regex, ┃ ┃ ┃
┃ builder ┃ executor ┃ status ┃ Runtime) ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━┩
│ stream_test/ │ generic.loc… │ PASS │ False False │ 0 │ 1.465659 │
│ 2b8a5490 │ │ │ False │ │ │
└──────────────┴──────────────┴────────┴───────────────┴────────────┴──────────┘
Passed Tests: 1/1 Percentage: 100.000%
Failed Tests: 0/1 Percentage: 0.000%
Adding 1 test results to /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/report.json
Writing Logfile to: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/logs/buildtest_q7elhj56.log
Let’s run buildtest inspect query -o stream_test
to retrieve the test details and output of STREAM test.
buildtest inspect query -o stream_test
$ buildtest inspect query -o stream_test
─────────────── stream_test/2b8a5490-bb71-47d0-8814-15e0a71d5efa ───────────────
Executor: generic.local.bash
Description: Run stream test with metrics example using assert greater equal
State: PASS
Returncode: 0
Runtime: 1.465659 sec
Starttime: 2023/03/20 23:00:21
Endtime: 2023/03/20 23:00:22
Command: bash --norc --noprofile -eo pipefail stream_test_build.sh
Test Script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/assert_ge/stream_test/2b8a5490/stream_test.sh
Build Script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/assert_ge/stream_test/2b8a5490/stream_test_build.sh
Output File: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/assert_ge/stream_test/2b8a5490/stream_test.out
Error File: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/assert_ge/stream_test/2b8a5490/stream_test.err
Log File: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/logs/buildtest_q7elhj56.log
Metrics
┏━━━━━━━┳━━━━━━━━┓
┃ Name ┃ Value ┃
┡━━━━━━━╇━━━━━━━━┩
│ copy │ 5889.7 │
│ scale │ 6721.3 │
│ add │ 8848.9 │
│ triad │ 8495.9 │
└───────┴────────┘
─ Output File: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/che… ─
-------------------------------------------------------------
STREAM version $Revision: 5.10 $
-------------------------------------------------------------
This system uses 8 bytes per array element.
-------------------------------------------------------------
Array size = 10000000 (elements), Offset = 0 (elements)
Memory per array = 76.3 MiB (= 0.1 GiB).
Total memory required = 228.9 MiB (= 0.2 GiB).
Each kernel will be executed 10 times.
The *best* time for each kernel (excluding the first iteration)
will be used to compute the reported bandwidth.
-------------------------------------------------------------
Your clock granularity/precision appears to be 1 microseconds.
Each test below will take on the order of 24749 microseconds.
(= 24749 clock ticks)
Increase the size of the arrays if this shows that
you are not getting at least 20 clock ticks per test.
-------------------------------------------------------------
WARNING -- The above is only a rough guideline.
For best results, please be sure you know the
precision of your system timer.
-------------------------------------------------------------
Function Best Rate MB/s Avg time Min time Max time
Copy: 5889.7 0.027199 0.027166 0.027238
Scale: 6721.3 0.023893 0.023805 0.024095
Add: 8848.9 0.027277 0.027122 0.027387
Triad: 8495.9 0.028319 0.028249 0.028460
-------------------------------------------------------------
Solution Validates: avg error less than 1.000000e-13 on all three arrays
-------------------------------------------------------------
Greater Than¶
In this example, we perform a > operation, this can be done via assert_gt
property
1buildspecs:
2 assert_gt_example:
3 type: script
4 executor: generic.local.bash
5 description: Run stream test with metrics example using assert greater than.
6 env:
7 OMP_NUM_THREADS: 4
8 run: |
9 wget https://raw.githubusercontent.com/jeffhammond/STREAM/master/stream.c
10 gcc -openmp -o stream stream.c
11 ./stream
12 metrics:
13 copy:
14 type: float
15 regex:
16 exp: 'Copy:\s+(\S+)\s+.*'
17 stream: stdout
18 item: 1
19 scale:
20 type: float
21 regex:
22 exp: 'Scale:\s+(\S+)\s+.*'
23 stream: stdout
24 item: 1
25 add:
26 type: float
27 regex:
28 exp: 'Add:\s+(\S+)\s+.*'
29 stream: stdout
30 item: 1
31 triad:
32 type: float
33 regex:
34 exp: 'Triad:\s+(\S+)\s+.*'
35 stream: stdout
36 item: 1
37 status:
38 assert_gt:
39 - name: copy
40 ref: 5000
41 - name: scale
42 ref: 5500
43 - name: add
44 ref: 6000
45 - name: triad
46 ref: 6500
Less Than Equal¶
In this example, we perform a <= operation, this can be done via assert_le
property
1buildspecs:
2 assert_le_example:
3 type: script
4 executor: generic.local.bash
5 description: Run stream test with metrics example using assert less than equal
6 env:
7 OMP_NUM_THREADS: 4
8 run: |
9 wget https://raw.githubusercontent.com/jeffhammond/STREAM/master/stream.c
10 gcc -openmp -o stream stream.c
11 ./stream
12 metrics:
13 copy:
14 type: float
15 regex:
16 exp: 'Copy:\s+(\S+)\s+.*'
17 stream: stdout
18 item: 1
19 scale:
20 type: float
21 regex:
22 exp: 'Scale:\s+(\S+)\s+.*'
23 stream: stdout
24 item: 1
25 add:
26 type: float
27 regex:
28 exp: 'Add:\s+(\S+)\s+.*'
29 stream: stdout
30 item: 1
31 triad:
32 type: float
33 regex:
34 exp: 'Triad:\s+(\S+)\s+.*'
35 stream: stdout
36 item: 1
37 status:
38 assert_le:
39 - name: copy
40 ref: 5000
41 - name: scale
42 ref: 5500
43 - name: add
44 ref: 6000
45 - name: triad
46 ref: 6500
Assert Equal¶
buildtest can perform assert equality check with metrics to determine status of test. In this next example, we define
four metrics x, y, first, and last which will be compared with its reference value. We introduce a new
property assert_eq
which is composed of list of assertions. Each reference is converted to its appropriate
type (int
, float
, str
).
1buildspecs:
2 assert_eq_example:
3 type: script
4 executor: generic.local.bash
5 description: Test for assert equality
6 vars:
7 X: 1
8 Y: 1.5
9 first: John
10 last: Smith
11 run: |
12 echo "X: $X"
13 echo "Y: $Y"
14 echo "Name: $first $last"
15 metrics:
16 x:
17 type: int
18 regex:
19 stream: stdout
20 exp: 'X:\s+(\S+)\s+.*'
21 item: 1
22 y:
23 type: float
24 regex:
25 stream: stdout
26 exp: 'Y:\s+(\S+)\s+.*'
27 item: 1
28 first:
29 type: str
30 regex:
31 stream: stdout
32 exp: 'Name:\s+(\S+)\s+.*'
33 item: 1
34 last:
35 type: str
36 regex:
37 stream: stdout
38 exp: '(Smith)$'
39 item: 1
40 status:
41 assert_eq:
42 - name: x
43 ref: 1
44 - name: y
45 ref: 1.5
46 - name: first
47 ref: John
48 - name: last
49 ref: Smith
This test is expected to pass where all assertions are True. Let’s build the test and see the output
buildtest build -b tutorials/perf_checks/assert_eq.yml
$ buildtest build -b tutorials/perf_checks/assert_eq.yml
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│ │
│ User: docs │
│ Hostname: build-19845526-project-280831-buildtest │
│ Platform: Linux │
│ Current Time: 2023/03/20 23:00:23 │
│ buildtest path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version: 1.3 │
│ python path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version: 3.7.15 │
│ Configuration File: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Test Directory: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Report File: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Command: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ │
╰──────────────────────────────────────────────────────────────────────────────╯
─────────────────────────── Discovering Buildspecs ────────────────────────────
Discovered buildspecs
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest… ║
╚══════════════════════════════════════════════════════════════════════════════╝
Total Discovered Buildspecs: 1
Total Excluded Buildspecs: 0
Detected Buildspecs after exclusion: 1
────────────────────────────── Parsing Buildspecs ──────────────────────────────
Valid Buildspecs: 1
Invalid Buildspecs: 0
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/tutorials/perf_checks/assert_eq.yml: VALID
Total builder objects created: 1
Builders by type=script
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ builder ┃ type ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ descrip… ┃ builds… ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ assert_… │ script │ generic… │ None │ None │ None │ Test for │ /home/… │
│ │ │ │ │ │ │ assert │ │
│ │ │ │ │ │ │ equality │ │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
assert_eq_example/7cbd2fbf: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/assert_eq/assert_eq_example/7cbd2fbf
assert_eq_example/7cbd2fbf: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/assert_eq/assert_eq_example/7cbd2fbf/stage
assert_eq_example/7cbd2fbf: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/assert_eq/assert_eq_example/7cbd2fbf/assert_eq_example_build.sh
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
assert_eq_example/7cbd2fbf does not have any dependencies adding test to queue
assert_eq_example/7cbd2fbf: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/assert_eq/assert_eq_example/7cbd2fbf/stage
assert_eq_example/7cbd2fbf: Running Test via command: bash --norc --noprofile -eo pipefail assert_eq_example_build.sh
assert_eq_example/7cbd2fbf: Test completed in 0.005704 seconds
assert_eq_example/7cbd2fbf: Test completed with returncode: 0
assert_eq_example/7cbd2fbf: Writing output file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/assert_eq/assert_eq_example/7cbd2fbf/assert_eq_example.out
assert_eq_example/7cbd2fbf: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/assert_eq/assert_eq_example/7cbd2fbf/assert_eq_example.err
assert_eq_example/7cbd2fbf: testing metric: x if 1 == 1 - Check: True
assert_eq_example/7cbd2fbf: testing metric: y if 1.5 == 1.5 - Check: True
assert_eq_example/7cbd2fbf: testing metric: first if John == John - Check: True
assert_eq_example/7cbd2fbf: testing metric: last if Smith == Smith - Check: True
assert_eq_example/7cbd2fbf: Equality Check: True
In this iteration we are going to run the following tests: [assert_eq_example/7cbd2fbf]
Test Summary
┏━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━┓
┃ ┃ ┃ ┃ checks ┃ ┃ ┃
┃ ┃ ┃ ┃ (ReturnCode, ┃ ┃ ┃
┃ ┃ ┃ ┃ Regex, ┃ ┃ ┃
┃ builder ┃ executor ┃ status ┃ Runtime) ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━┩
│ assert_eq_ex │ generic.loc… │ PASS │ False False │ 0 │ 0.005704 │
│ ample/7cbd2f │ │ │ False │ │ │
│ bf │ │ │ │ │ │
└──────────────┴──────────────┴────────┴───────────────┴────────────┴──────────┘
Passed Tests: 1/1 Percentage: 100.000%
Failed Tests: 0/1 Percentage: 0.000%
Adding 1 test results to /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/report.json
Writing Logfile to: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/logs/buildtest_bh7a8jts.log
buildtest inspect query -o assert_eq_example
$ buildtest inspect query -o assert_eq_example
──────────── assert_eq_example/7cbd2fbf-5543-43ed-af3a-4c600ef5cb28 ────────────
Executor: generic.local.bash
Description: Test for assert equality
State: PASS
Returncode: 0
Runtime: 0.005704 sec
Starttime: 2023/03/20 23:00:23
Endtime: 2023/03/20 23:00:23
Command: bash --norc --noprofile -eo pipefail assert_eq_example_build.sh
Test Script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/assert_eq/assert_eq_example/7cbd2fbf/assert_eq_example.sh
Build Script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/assert_eq/assert_eq_example/7cbd2fbf/assert_eq_example_build.sh
Output File: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/assert_eq/assert_eq_example/7cbd2fbf/assert_eq_example.out
Error File: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/assert_eq/assert_eq_example/7cbd2fbf/assert_eq_example.err
Log File: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/logs/buildtest_bh7a8jts.log
Metrics
┏━━━━━━━┳━━━━━━━┓
┃ Name ┃ Value ┃
┡━━━━━━━╇━━━━━━━┩
│ x │ 1 │
│ y │ 1.5 │
│ first │ John │
│ last │ Smith │
└───────┴───────┘
─ Output File: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/che… ─
X: 1
Y: 1.5
Name: John Smith
In the next example, we have two tests to highlight some exceptions. In the first test, we define an invalid metric name invalid_metric
in assert_eq
since this metric was not defined in metrics
field, therefore this test will fail. The second test will fail because we have
a mismatch in value captured by metric x
which is 1 however the reference value is 2.
1buildspecs:
2 assert_eq_invalid_metric:
3 type: script
4 executor: generic.local.bash
5 description: An invalid metric name will cause failure
6 vars:
7 X: 1
8 run: |
9 echo "X: $X"
10 metrics:
11 x:
12 type: int
13 regex:
14 stream: stdout
15 exp: 'X:\s+(\S+)\s+.*'
16 item: 1
17 status:
18 assert_eq:
19 - name: x
20 ref: 1
21 - name: invalid_metric
22 ref: 'hello'
23 assert_eq_mismatch:
24 type: script
25 executor: generic.local.bash
26 description: This test will fail because there is a mismatch in metric x assert equality
27 vars:
28 X: 1
29 run: |
30 echo "X: $X"
31 metrics:
32 x:
33 type: int
34 regex:
35 stream: stdout
36 exp: 'X:\s+(\S+)\s+.*'
37 item: 1
38 status:
39 assert_eq:
40 - name: x
41 ref: 2
Let’s build this test and see the output.
buildtest build -b tutorials/perf_checks/assert_eq_exceptions.yml
$ buildtest build -b tutorials/perf_checks/assert_eq_exceptions.yml
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│ │
│ User: docs │
│ Hostname: build-19845526-project-280831-buildtest │
│ Platform: Linux │
│ Current Time: 2023/03/20 23:00:25 │
│ buildtest path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version: 1.3 │
│ python path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version: 3.7.15 │
│ Configuration File: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Test Directory: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Report File: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Command: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ │
╰──────────────────────────────────────────────────────────────────────────────╯
─────────────────────────── Discovering Buildspecs ────────────────────────────
Discovered buildspecs
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest… ║
╚══════════════════════════════════════════════════════════════════════════════╝
Total Discovered Buildspecs: 1
Total Excluded Buildspecs: 0
Detected Buildspecs after exclusion: 1
────────────────────────────── Parsing Buildspecs ──────────────────────────────
Valid Buildspecs: 1
Invalid Buildspecs: 0
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/tutorials/perf_checks/assert_eq_exceptions.yml: VALID
Total builder objects created: 2
Builders by type=script
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ builder ┃ type ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ descrip… ┃ builds… ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ assert_… │ script │ generic… │ None │ None │ None │ An │ /home/… │
│ │ │ │ │ │ │ invalid │ │
│ │ │ │ │ │ │ metric │ │
│ │ │ │ │ │ │ name │ │
│ │ │ │ │ │ │ will │ │
│ │ │ │ │ │ │ cause │ │
│ │ │ │ │ │ │ failure │ │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ assert_… │ script │ generic… │ None │ None │ None │ This │ /home/… │
│ │ │ │ │ │ │ test │ │
│ │ │ │ │ │ │ will │ │
│ │ │ │ │ │ │ fail │ │
│ │ │ │ │ │ │ because │ │
│ │ │ │ │ │ │ there is │ │
│ │ │ │ │ │ │ a │ │
│ │ │ │ │ │ │ mismatch │ │
│ │ │ │ │ │ │ in │ │
│ │ │ │ │ │ │ metric x │ │
│ │ │ │ │ │ │ assert │ │
│ │ │ │ │ │ │ equality │ │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
assert_eq_invalid_metric/c16483a9: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/assert_eq_exceptions/assert_eq_invalid_metric/c16483a9
assert_eq_invalid_metric/c16483a9: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/assert_eq_exceptions/assert_eq_invalid_metric/c16483a9/stage
assert_eq_invalid_metric/c16483a9: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/assert_eq_exceptions/assert_eq_invalid_metric/c16483a9/assert_eq_invalid_metric_build.sh
assert_eq_mismatch/409edcf0: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/assert_eq_exceptions/assert_eq_mismatch/409edcf0
assert_eq_mismatch/409edcf0: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/assert_eq_exceptions/assert_eq_mismatch/409edcf0/stage
assert_eq_mismatch/409edcf0: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/assert_eq_exceptions/assert_eq_mismatch/409edcf0/assert_eq_mismatch_build.sh
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
assert_eq_invalid_metric/c16483a9 does not have any dependencies adding test to queue
assert_eq_mismatch/409edcf0 does not have any dependencies adding test to queue
assert_eq_invalid_metric/c16483a9: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/assert_eq_exceptions/assert_eq_invalid_metric/c16483a9/stage
assert_eq_invalid_metric/c16483a9: Running Test via command: bash --norc --noprofile -eo pipefail assert_eq_invalid_metric_build.sh
assert_eq_invalid_metric/c16483a9: Test completed in 0.005638 seconds
assert_eq_invalid_metric/c16483a9: Test completed with returncode: 0
assert_eq_invalid_metric/c16483a9: Writing output file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/assert_eq_exceptions/assert_eq_invalid_metric/c16483a9/assert_eq_invalid_metric.out
assert_eq_invalid_metric/c16483a9: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/assert_eq_exceptions/assert_eq_invalid_metric/c16483a9/assert_eq_invalid_metric.err
assert_eq_invalid_metric/c16483a9: testing metric: x if 1 == 1 - Check: True
assert_eq_invalid_metric/c16483a9: Unable to find metric: invalid_metric. List of valid metrics are the following: ['x']
assert_eq_invalid_metric/c16483a9: Equality Check: False
assert_eq_mismatch/409edcf0: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/assert_eq_exceptions/assert_eq_mismatch/409edcf0/stage
assert_eq_mismatch/409edcf0: Running Test via command: bash --norc --noprofile -eo pipefail assert_eq_mismatch_build.sh
assert_eq_mismatch/409edcf0: Test completed in 0.005183 seconds
assert_eq_mismatch/409edcf0: Test completed with returncode: 0
assert_eq_mismatch/409edcf0: Writing output file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/assert_eq_exceptions/assert_eq_mismatch/409edcf0/assert_eq_mismatch.out
assert_eq_mismatch/409edcf0: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/assert_eq_exceptions/assert_eq_mismatch/409edcf0/assert_eq_mismatch.err
assert_eq_mismatch/409edcf0: testing metric: x if 1 == 2 - Check: False
assert_eq_mismatch/409edcf0: Equality Check: False
In this iteration we are going to run the following tests: [assert_eq_invalid_metric/c16483a9, assert_eq_mismatch/409edcf0]
Test Summary
┏━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━┓
┃ ┃ ┃ ┃ checks ┃ ┃ ┃
┃ ┃ ┃ ┃ (ReturnCode, ┃ ┃ ┃
┃ ┃ ┃ ┃ Regex, ┃ ┃ ┃
┃ builder ┃ executor ┃ status ┃ Runtime) ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━┩
│ assert_eq_in │ generic.loc… │ FAIL │ False False │ 0 │ 0.005638 │
│ valid_metric │ │ │ False │ │ │
│ /c16483a9 │ │ │ │ │ │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ assert_eq_mi │ generic.loc… │ FAIL │ False False │ 0 │ 0.005183 │
│ smatch/409ed │ │ │ False │ │ │
│ cf0 │ │ │ │ │ │
└──────────────┴──────────────┴────────┴───────────────┴────────────┴──────────┘
Passed Tests: 0/2 Percentage: 0.000%
Failed Tests: 2/2 Percentage: 100.000%
Adding 2 test results to /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/report.json
Writing Logfile to: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/logs/buildtest_y005fm3w.log
Assert Not Equal¶
In this section, we will discuss the inverse equality operation Not Equal check (!=) with reference value.
We can use assert_ne
property to perform != check, it works similar to assert_eq with data types int,
float and str. In this example, we check the metrics x
, y
, first
and last
and each metric
should pass. The reference value is converted to the data-type (type
field) for each metrics
1buildspecs:
2 assert_ne_example:
3 type: script
4 executor: generic.local.bash
5 description: Test for assert not equal
6 vars:
7 X: 1
8 Y: 1.5
9 first: John
10 last: Smith
11 run: |
12 echo "X: $X"
13 echo "Y: $Y"
14 echo "Name: $first $last"
15 metrics:
16 x:
17 type: int
18 regex:
19 stream: stdout
20 exp: 'X:\s+(\S+)\s+.*'
21 item: 1
22 y:
23 type: float
24 regex:
25 stream: stdout
26 exp: 'Y:\s+(\S+)\s+.*'
27 item: 1
28 first:
29 type: str
30 regex:
31 stream: stdout
32 exp: 'Name:\s+(\S+)\s+.*'
33 item: 1
34 last:
35 type: str
36 regex:
37 stream: stdout
38 exp: '(Smith)$'
39 item: 1
40 status:
41 assert_ne:
42 - name: x
43 ref: 2
44 - name: y
45 ref: 2.5
46 - name: first
47 ref: Robert
48 - name: last
49 ref: Brown
We expect this test to pass. In order to run this test, you can do the following
buildtest build -b tutorials/perf_checks/assert_ne.yml
$ buildtest build -b tutorials/perf_checks/assert_ne.yml
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│ │
│ User: docs │
│ Hostname: build-19845526-project-280831-buildtest │
│ Platform: Linux │
│ Current Time: 2023/03/20 23:00:25 │
│ buildtest path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version: 1.3 │
│ python path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version: 3.7.15 │
│ Configuration File: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Test Directory: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Report File: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Command: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ │
╰──────────────────────────────────────────────────────────────────────────────╯
─────────────────────────── Discovering Buildspecs ────────────────────────────
Discovered buildspecs
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest… ║
╚══════════════════════════════════════════════════════════════════════════════╝
Total Discovered Buildspecs: 1
Total Excluded Buildspecs: 0
Detected Buildspecs after exclusion: 1
────────────────────────────── Parsing Buildspecs ──────────────────────────────
Valid Buildspecs: 1
Invalid Buildspecs: 0
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/tutorials/perf_checks/assert_ne.yml: VALID
Total builder objects created: 1
Builders by type=script
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ builder ┃ type ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ descrip… ┃ builds… ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ assert_… │ script │ generic… │ None │ None │ None │ Test for │ /home/… │
│ │ │ │ │ │ │ assert │ │
│ │ │ │ │ │ │ not │ │
│ │ │ │ │ │ │ equal │ │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
assert_ne_example/7f878844: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/assert_ne/assert_ne_example/7f878844
assert_ne_example/7f878844: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/assert_ne/assert_ne_example/7f878844/stage
assert_ne_example/7f878844: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/assert_ne/assert_ne_example/7f878844/assert_ne_example_build.sh
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
assert_ne_example/7f878844 does not have any dependencies adding test to queue
assert_ne_example/7f878844: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/assert_ne/assert_ne_example/7f878844/stage
assert_ne_example/7f878844: Running Test via command: bash --norc --noprofile -eo pipefail assert_ne_example_build.sh
assert_ne_example/7f878844: Test completed in 0.005551 seconds
assert_ne_example/7f878844: Test completed with returncode: 0
assert_ne_example/7f878844: Writing output file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/assert_ne/assert_ne_example/7f878844/assert_ne_example.out
assert_ne_example/7f878844: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/assert_ne/assert_ne_example/7f878844/assert_ne_example.err
assert_ne_example/7f878844: testing metric: x if 1 != 2 - Check: True
assert_ne_example/7f878844: testing metric: y if 1.5 != 2.5 - Check: True
assert_ne_example/7f878844: testing metric: first if John != Robert - Check: True
assert_ne_example/7f878844: testing metric: last if Smith != Brown - Check: True
assert_ne_example/7f878844: Not Equal Check: True
In this iteration we are going to run the following tests: [assert_ne_example/7f878844]
Test Summary
┏━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━┓
┃ ┃ ┃ ┃ checks ┃ ┃ ┃
┃ ┃ ┃ ┃ (ReturnCode, ┃ ┃ ┃
┃ ┃ ┃ ┃ Regex, ┃ ┃ ┃
┃ builder ┃ executor ┃ status ┃ Runtime) ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━┩
│ assert_ne_ex │ generic.loc… │ PASS │ False False │ 0 │ 0.005551 │
│ ample/7f8788 │ │ │ False │ │ │
│ 44 │ │ │ │ │ │
└──────────────┴──────────────┴────────┴───────────────┴────────────┴──────────┘
Passed Tests: 1/1 Percentage: 100.000%
Failed Tests: 0/1 Percentage: 0.000%
Adding 1 test results to /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/report.json
Writing Logfile to: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/logs/buildtest_lt6opx8k.log
Assert Range¶
The assert_range
property can be used to test performance for a metric given a lower and upper bound. This property expects
one to specify lower
and upper
field which must be an integer or floating point number to perform comparison. buildtest will
perform an assertion, if metric value is in the range specified by lower and upper, then test will pass. Shown below
is an example using the assert_range
property with stream benchmark.
1buildspecs:
2 assert_range_ex:
3 type: script
4 executor: generic.local.bash
5 description: Example on assert_range
6 env:
7 OMP_NUM_THREADS: 4
8 run: |
9 wget https://raw.githubusercontent.com/jeffhammond/STREAM/master/stream.c
10 gcc -openmp -o stream stream.c
11 ./stream
12 metrics:
13 copy:
14 type: float
15 regex:
16 exp: 'Copy:\s+(\S+)\s+.*'
17 stream: stdout
18 item: 1
19 scale:
20 type: float
21 regex:
22 exp: 'Scale:\s+(\S+)\s+.*'
23 stream: stdout
24 item: 1
25 add:
26 type: float
27 regex:
28 exp: 'Add:\s+(\S+)\s+.*'
29 stream: stdout
30 item: 1
31 triad:
32 type: float
33 regex:
34 exp: 'Triad:\s+(\S+)\s+.*'
35 stream: stdout
36 item: 1
37 status:
38 assert_range:
39 - name: copy
40 lower: 5000
41 upper: 20000
42 - name: scale
43 lower: 4500
44 upper: 20000
45 - name: add
46 lower: 4300
47 upper: 20000
48 - name: triad
49 lower: 5600
50 upper: 20000
Let’s build this test and see the output
buildtest build -b tutorials/perf_checks/assert_range.yml
$ buildtest build -b tutorials/perf_checks/assert_range.yml
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│ │
│ User: docs │
│ Hostname: build-19845526-project-280831-buildtest │
│ Platform: Linux │
│ Current Time: 2023/03/20 23:00:26 │
│ buildtest path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version: 1.3 │
│ python path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version: 3.7.15 │
│ Configuration File: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Test Directory: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Report File: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Command: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ │
╰──────────────────────────────────────────────────────────────────────────────╯
─────────────────────────── Discovering Buildspecs ────────────────────────────
Discovered buildspecs
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest… ║
╚══════════════════════════════════════════════════════════════════════════════╝
Total Discovered Buildspecs: 1
Total Excluded Buildspecs: 0
Detected Buildspecs after exclusion: 1
────────────────────────────── Parsing Buildspecs ──────────────────────────────
Valid Buildspecs: 1
Invalid Buildspecs: 0
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/tutorials/perf_checks/assert_range.yml: VALID
Total builder objects created: 1
Builders by type=script
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ builder ┃ type ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ descrip… ┃ builds… ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ assert_… │ script │ generic… │ None │ None │ None │ Example │ /home/… │
│ │ │ │ │ │ │ on │ │
│ │ │ │ │ │ │ assert_… │ │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
assert_range_ex/78ea45e9: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/assert_range/assert_range_ex/78ea45e9
assert_range_ex/78ea45e9: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/assert_range/assert_range_ex/78ea45e9/stage
assert_range_ex/78ea45e9: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/assert_range/assert_range_ex/78ea45e9/assert_range_ex_build.sh
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
assert_range_ex/78ea45e9 does not have any dependencies adding test to queue
assert_range_ex/78ea45e9: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/assert_range/assert_range_ex/78ea45e9/stage
assert_range_ex/78ea45e9: Running Test via command: bash --norc --noprofile -eo pipefail assert_range_ex_build.sh
assert_range_ex/78ea45e9: Test completed in 1.410939 seconds
assert_range_ex/78ea45e9: Test completed with returncode: 0
assert_range_ex/78ea45e9: Writing output file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/assert_range/assert_range_ex/78ea45e9/assert_range_ex.out
assert_range_ex/78ea45e9: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/assert_range/assert_range_ex/78ea45e9/assert_range_ex.err
assert_range_ex/78ea45e9: testing metric: copy if 5000.0 <= 5872.0 <= 20000.0 - Check: True
assert_range_ex/78ea45e9: testing metric: scale if 4500.0 <= 6727.5 <= 20000.0 - Check: True
assert_range_ex/78ea45e9: testing metric: add if 4300.0 <= 8827.4 <= 20000.0 - Check: True
assert_range_ex/78ea45e9: testing metric: triad if 5600.0 <= 8488.3 <= 20000.0 - Check: True
assert_range_ex/78ea45e9: Range Check: True
In this iteration we are going to run the following tests: [assert_range_ex/78ea45e9]
Test Summary
┏━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━┓
┃ ┃ ┃ ┃ checks ┃ ┃ ┃
┃ ┃ ┃ ┃ (ReturnCode, ┃ ┃ ┃
┃ ┃ ┃ ┃ Regex, ┃ ┃ ┃
┃ builder ┃ executor ┃ status ┃ Runtime) ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━┩
│ assert_range │ generic.loc… │ PASS │ False False │ 0 │ 1.410939 │
│ _ex/78ea45e9 │ │ │ False │ │ │
└──────────────┴──────────────┴────────┴───────────────┴────────────┴──────────┘
Passed Tests: 1/1 Percentage: 100.000%
Failed Tests: 0/1 Percentage: 0.000%
Adding 1 test results to /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/report.json
Writing Logfile to: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/logs/buildtest_cihsvndi.log
Note that performance results may vary on your system and depending on the metric value you may want to adjust the lower and upper bound to match your requirement.
Contains and Not Contains¶
Buildtest can perform status check with a list of reference values and check if metrics value is in the list. The
property contains
and not_contains
can be used to perform this type of check. The ref
property is a list of
reference values that a metric must have to pass metrics check.
In example below we have two tests, the first test perform contains
and not_contains
on metrics x. We expect both
status check will pass. The second test is expected to fail because metric x
will store integer value 1 but the list has
string equivalent ‘1’.
1buildspecs:
2 contains_and_not_contains:
3 type: script
4 executor: generic.local.bash
5 description: Status check based on contains and not contains where test pass
6 vars:
7 X: 1
8 run: |
9 echo "X: $X"
10 metrics:
11 x:
12 type: int
13 regex:
14 stream: stdout
15 exp: 'X:\s+(\S+)\s+.*'
16 item: 1
17 status:
18 contains:
19 - name: x
20 ref: [1, 2, 4, 8]
21 not_contains:
22 - name: x
23 ref: [2, 4]
24 assert_contains_fail:
25 type: script
26 executor: generic.local.bash
27 description: Status check based on contains where test fails
28 vars:
29 X: 1
30 run: |
31 echo "X: $X"
32 metrics:
33 x:
34 type: int
35 regex:
36 stream: stdout
37 exp: 'X:\s+(\S+)\s+.*'
38 item: 1
39 status:
40 contains:
41 - name: x
42 ref: ['1', 2, 4, 8]
You can run this test, by running the following command
buildtest build -b tutorials/perf_checks/contains.yml
$ buildtest build -b tutorials/perf_checks/contains.yml
╭───────────────────────────── buildtest summary ──────────────────────────────╮
│ │
│ User: docs │
│ Hostname: build-19845526-project-280831-buildtest │
│ Platform: Linux │
│ Current Time: 2023/03/20 23:00:28 │
│ buildtest path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ buildtest version: 1.3 │
│ python path: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ python version: 3.7.15 │
│ Configuration File: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Test Directory: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Report File: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ Command: /home/docs/checkouts/readthedocs.org/user_builds/buildte │
│ │
╰──────────────────────────────────────────────────────────────────────────────╯
─────────────────────────── Discovering Buildspecs ────────────────────────────
Discovered buildspecs
╔══════════════════════════════════════════════════════════════════════════════╗
║ buildspec ║
╟──────────────────────────────────────────────────────────────────────────────╢
║ /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest… ║
╚══════════════════════════════════════════════════════════════════════════════╝
Total Discovered Buildspecs: 1
Total Excluded Buildspecs: 0
Detected Buildspecs after exclusion: 1
────────────────────────────── Parsing Buildspecs ──────────────────────────────
Valid Buildspecs: 1
Invalid Buildspecs: 0
/home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/tutorials/perf_checks/contains.yml: VALID
Total builder objects created: 2
Builders by type=script
┏━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━┳━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━┓
┃ builder ┃ type ┃ executor ┃ compiler ┃ nodes ┃ procs ┃ descrip… ┃ builds… ┃
┡━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━╇━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━┩
│ contain… │ script │ generic… │ None │ None │ None │ Status │ /home/… │
│ │ │ │ │ │ │ check │ │
│ │ │ │ │ │ │ based on │ │
│ │ │ │ │ │ │ contains │ │
│ │ │ │ │ │ │ and not │ │
│ │ │ │ │ │ │ contains │ │
│ │ │ │ │ │ │ where │ │
│ │ │ │ │ │ │ test │ │
│ │ │ │ │ │ │ pass │ │
├──────────┼────────┼──────────┼──────────┼───────┼───────┼──────────┼─────────┤
│ assert_… │ script │ generic… │ None │ None │ None │ Status │ /home/… │
│ │ │ │ │ │ │ check │ │
│ │ │ │ │ │ │ based on │ │
│ │ │ │ │ │ │ contains │ │
│ │ │ │ │ │ │ where │ │
│ │ │ │ │ │ │ test │ │
│ │ │ │ │ │ │ fails │ │
└──────────┴────────┴──────────┴──────────┴───────┴───────┴──────────┴─────────┘
──────────────────────────────── Building Test ─────────────────────────────────
contains_and_not_contains/451993a5: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/contains/contains_and_not_contains/451993a5
contains_and_not_contains/451993a5: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/contains/contains_and_not_contains/451993a5/stage
contains_and_not_contains/451993a5: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/contains/contains_and_not_contains/451993a5/contains_and_not_contains_build.sh
assert_contains_fail/3dd1fc48: Creating test directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/contains/assert_contains_fail/3dd1fc48
assert_contains_fail/3dd1fc48: Creating the stage directory: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/contains/assert_contains_fail/3dd1fc48/stage
assert_contains_fail/3dd1fc48: Writing build script: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/contains/assert_contains_fail/3dd1fc48/assert_contains_fail_build.sh
──────────────────────────────── Running Tests ─────────────────────────────────
Spawning 1 processes for processing builders
───────────────────────────────── Iteration 1 ──────────────────────────────────
contains_and_not_contains/451993a5 does not have any dependencies adding test to queue
assert_contains_fail/3dd1fc48 does not have any dependencies adding test to queue
contains_and_not_contains/451993a5: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/contains/contains_and_not_contains/451993a5/stage
contains_and_not_contains/451993a5: Running Test via command: bash --norc --noprofile -eo pipefail contains_and_not_contains_build.sh
contains_and_not_contains/451993a5: Test completed in 0.005586 seconds
contains_and_not_contains/451993a5: Test completed with returncode: 0
contains_and_not_contains/451993a5: Writing output file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/contains/contains_and_not_contains/451993a5/contains_and_not_contains.out
contains_and_not_contains/451993a5: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/contains/contains_and_not_contains/451993a5/contains_and_not_contains.err
contains_and_not_contains/451993a5: testing metric: x if 1 in [1, 2, 4, 8] - Check: True
contains_and_not_contains/451993a5: Contains Check: True
contains_and_not_contains/451993a5: testing metric: x if 1 not in [2, 4] - Check: True
contains_and_not_contains/451993a5: Not Contains Check: True
assert_contains_fail/3dd1fc48: Current Working Directory : /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/contains/assert_contains_fail/3dd1fc48/stage
assert_contains_fail/3dd1fc48: Running Test via command: bash --norc --noprofile -eo pipefail assert_contains_fail_build.sh
assert_contains_fail/3dd1fc48: Test completed in 0.00521 seconds
assert_contains_fail/3dd1fc48: Test completed with returncode: 0
assert_contains_fail/3dd1fc48: Writing output file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/contains/assert_contains_fail/3dd1fc48/assert_contains_fail.out
assert_contains_fail/3dd1fc48: Writing error file - /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/tests/generic.local.bash/contains/assert_contains_fail/3dd1fc48/assert_contains_fail.err
assert_contains_fail/3dd1fc48: testing metric: x if 1 in ['1', 2, 4, 8] - Check: False
assert_contains_fail/3dd1fc48: Contains Check: False
In this iteration we are going to run the following tests: [contains_and_not_contains/451993a5, assert_contains_fail/3dd1fc48]
Test Summary
┏━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━┓
┃ ┃ ┃ ┃ checks ┃ ┃ ┃
┃ ┃ ┃ ┃ (ReturnCode, ┃ ┃ ┃
┃ ┃ ┃ ┃ Regex, ┃ ┃ ┃
┃ builder ┃ executor ┃ status ┃ Runtime) ┃ returncode ┃ runtime ┃
┡━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━┩
│ contains_and │ generic.loc… │ PASS │ False False │ 0 │ 0.005586 │
│ _not_contain │ │ │ False │ │ │
│ s/451993a5 │ │ │ │ │ │
├──────────────┼──────────────┼────────┼───────────────┼────────────┼──────────┤
│ assert_conta │ generic.loc… │ FAIL │ False False │ 0 │ 0.00521 │
│ ins_fail/3dd │ │ │ False │ │ │
│ 1fc48 │ │ │ │ │ │
└──────────────┴──────────────┴────────┴───────────────┴────────────┴──────────┘
Passed Tests: 1/2 Percentage: 50.000%
Failed Tests: 1/2 Percentage: 50.000%
Adding 2 test results to /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/report.json
Writing Logfile to: /home/docs/checkouts/readthedocs.org/user_builds/buildtest/checkouts/latest/var/logs/buildtest_iolfsv7p.log