aboutsummaryrefslogtreecommitdiff
path: root/tests/framework/SConscript
diff options
context:
space:
mode:
Diffstat (limited to 'tests/framework/SConscript')
-rw-r--r--tests/framework/SConscript7
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/framework/SConscript b/tests/framework/SConscript
index c4fe50db05..450ffd77b0 100644
--- a/tests/framework/SConscript
+++ b/tests/framework/SConscript
@@ -1,6 +1,7 @@
+#!/usr/bin/python
# -*- coding: utf-8 -*-
-# Copyright (c) 2017-2021 Arm Limited.
+# Copyright (c) 2017-2022 Arm Limited.
#
# SPDX-License-Identifier: MIT
#
@@ -29,8 +30,8 @@ Import('vars')
# vars is imported from arm_compute:
variables = [
- BoolVariable("pmu", "Enable PMU counters", False),
- BoolVariable("mali", "Enable Arm® Mali™ hardware counters", False),
+ BoolVariable("pmu", "Enable the PMU cycle counter to measure execution time in benchmark tests. (Your device needs to support it)", False),
+ BoolVariable("mali", "Enable the collection of Arm® Mali™ hardware counters to measure execution time in benchmark tests. (Your device needs to have a Arm® Mali™ driver that supports it)", False),
]
# We need a separate set of Variables for the Help message (Otherwise the global variables will get displayed twice)