aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreg Bellows <greg.bellows@linaro.org>2015-04-22 16:25:34 -0500
committerGreg Bellows <greg.bellows@linaro.org>2015-04-22 16:25:34 -0500
commit6204523232f0ee90e413d8243ef670af76c3583d (patch)
treed0aed627590375d82614ca09dc6b16a34bc2461c
parentca8507759be7b344bf3425c169ced01e7818df83 (diff)
Fix EL1 smc test message
Signed-off-by: Greg Bellows <greg.bellows@linaro.org>
-rw-r--r--tztest/el1/tztest_el1.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tztest/el1/tztest_el1.c b/tztest/el1/tztest_el1.c
index 0a9ee49..5309445 100644
--- a/tztest/el1/tztest_el1.c
+++ b/tztest/el1/tztest_el1.c
@@ -21,7 +21,7 @@ uint32_t el1_check_smc(uint32_t __attribute__((unused))arg)
* if the SCR.SMD bit is set. This is regardless of whether EL2 is present
* or not.
*/
- TEST_MSG("SMC call with SCR.SMD set");
+ TEST_MSG("SMC call without virt (SCR.SMD = 1)");
TEST_EL3_EXCEPTION(__smc(SMC_OP_NOOP, NULL), EC_UNKNOWN);
#else
/* On AArch32, SMC calls are undefined when SCR.SCD is set only when the
@@ -32,7 +32,7 @@ uint32_t el1_check_smc(uint32_t __attribute__((unused))arg)
/* When the virtualization extensions are not present, the SCR.SCD bit
* setting should have no impact on SMC.
*/
- TEST_MSG("SMC call without virt ext. and SCR.SMD set");
+ TEST_MSG("SMC call without virt (SCR.SCD = 1)");
TEST_NO_EXCEPTION(__smc(SMC_OP_NOOP, NULL));
#endif