summaryrefslogtreecommitdiff
path: root/tests/runtime_services
diff options
context:
space:
mode:
authorSandrine Bailleux <sandrine.bailleux@arm.com>2015-01-27 17:07:49 +0000
committerSandrine Bailleux <sandrine.bailleux@arm.com>2015-01-27 17:27:12 +0000
commit6d6a067ea73e992a5b30f80027e7a41282ee326a (patch)
treed2f75387102e0af4a21e8426ec238770944c8aa2 /tests/runtime_services
parent6cbc983dc60c7a9d2838997b83173ea22de0804f (diff)
Distinguish PSCI_NUM_CALLS from TF_PSCI_NUM_CALLS
TF_PSCI_NUM_CALLS is now the number of PSCI calls implemented in the Trusted Firmware (used to be called PSCI_NUM_CALLS). PSCI_NUM_CALLS is now the total number of PSCI calls defined in the PSCI specification. Change-Id: If506d4a8a0ca7898134158aa6359e9a8ca95b34c
Diffstat (limited to 'tests/runtime_services')
-rw-r--r--tests/runtime_services/standard_service/query_std_svc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/runtime_services/standard_service/query_std_svc.c b/tests/runtime_services/standard_service/query_std_svc.c
index 0f02e39..31ec6b5 100644
--- a/tests/runtime_services/standard_service/query_std_svc.c
+++ b/tests/runtime_services/standard_service/query_std_svc.c
@@ -86,10 +86,10 @@ TEST_RESULT test_query_std_svc(void)
* PSCI is the only standard service implemented at the moment.
* So expect the number of PSCI calls.
*/
- if (ret.ret0 != PSCI_NUM_CALLS) {
+ if (ret.ret0 != TF_PSCI_NUM_CALLS) {
tftf_testcase_printf(
"Wrong Call Count: expected %u, got %lu\n",
- PSCI_NUM_CALLS, ret.ret0);
+ TF_PSCI_NUM_CALLS, ret.ret0);
test_result = TEST_RESULT_FAIL;
}