Add armeabi-v7a-hard to run-all.py.

Change-Id: I6ff5090fa3749f0e62dff25dbb332101cd416af7
diff --git a/tests/ndk.py b/tests/ndk.py
index c2b35c1..4019b03 100644
--- a/tests/ndk.py
+++ b/tests/ndk.py
@@ -41,7 +41,7 @@
 
 
 def expand_app_abi(abi):
-    all32 = ('armeabi', 'armeabi-v7a', 'mips', 'x86')
+    all32 = ('armeabi', 'armeabi-v7a', 'armeabi-v7a-hard', 'mips', 'x86')
     all64 = ('arm64-v8a', 'mips64', 'x86_64')
     all_abis = all32 + all64
     if abi == 'all':
diff --git a/tests/run-all.py b/tests/run-all.py
index f0f6731..4a05d8b 100644
--- a/tests/run-all.py
+++ b/tests/run-all.py
@@ -50,6 +50,7 @@
 SUPPORTED_ABIS = (
     'armeabi',
     'armeabi-v7a',
+    'armeabi-v7a-hard',
     'arm64-v8a',
     'mips',
     'mips64',
@@ -117,6 +118,8 @@
     abi2 = adb.get_prop('ro.product.cpu.abi2')
     if abi2 is not None:
         abis.append(abi2)
+    if 'armeabi-v7a' in abis:
+        abis.append('armeabi-v7a-hard')
     return abis