aboutsummaryrefslogtreecommitdiff
path: root/test/aarch64
diff options
context:
space:
mode:
authorAlexander Gilday <alexander.gilday@arm.com>2018-05-22 10:51:09 +0100
committerAlexander Gilday <alexander.gilday@arm.com>2018-05-25 07:05:59 +0000
commit69203a5c036e37087261d0a9771e5334d8af709d (patch)
tree812a8d98f1100290ed1abc0d4b5d57658e339298 /test/aarch64
parent4df1551659351b11606ba43ef0b90d0139d610cb (diff)
downloadvixl-69203a5c036e37087261d0a9771e5334d8af709d.tar.gz
Improve simulator trace generator script and fix tests.
Improvements are: - Sort tests by filename so clang-format doesn't complain about include ordering. - Don't pad spaces in dummy array declarations (clang-format again) - Filter tests which require regenerating to save time Also, fix NEON 'Across' tests. Change-Id: Ifadeaea29064e16395db22ea16e9e5f63ad05819
Diffstat (limited to 'test/aarch64')
-rw-r--r--test/aarch64/test-simulator-aarch64.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/aarch64/test-simulator-aarch64.cc b/test/aarch64/test-simulator-aarch64.cc
index 480cf2a4..00d833eb 100644
--- a/test/aarch64/test-simulator-aarch64.cc
+++ b/test/aarch64/test-simulator-aarch64.cc
@@ -1615,7 +1615,7 @@ static void Test1OpAcrossNEON(const char* name,
printf(" ");
// Output a separate result for each element of the result vector.
for (unsigned lane = 0; lane < vd_lane_count; lane++) {
- unsigned index = lane + (iteration * vd_lane_count);
+ unsigned index = lane + (iteration * vd_lanes_per_q);
printf(" 0x%0*" PRIx64 ",",
lane_len_in_hex,
static_cast<uint64_t>(results[index]));