diff options
Diffstat (limited to 'src/exception_test.cc')
-rw-r--r-- | src/exception_test.cc | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/exception_test.cc b/src/exception_test.cc index 7303ac6615..b82f8f785c 100644 --- a/src/exception_test.cc +++ b/src/exception_test.cc @@ -47,7 +47,13 @@ class ExceptionTest : public CommonTest { fake_code_.push_back(0x70 | i); } - fake_mapping_data_.push_back(2); // first element is count of remaining elements + fake_mapping_data_.push_back(4); // first element is count + fake_mapping_data_.push_back(4); // total (non-length) elements + fake_mapping_data_.push_back(2); // count of pc to dex elements + // --- pc to dex table + fake_mapping_data_.push_back(3); // offset 3 + fake_mapping_data_.push_back(3); // maps to dex offset 3 + // --- dex to pc table fake_mapping_data_.push_back(3); // offset 3 fake_mapping_data_.push_back(3); // maps to dex offset 3 |