summaryrefslogtreecommitdiffstats
path: root/compiler/utils/scoped_hashtable_test.cc
diff options
context:
space:
mode:
authorBrian Carlstrom <bdc@google.com>2014-02-24 23:23:58 -0800
committerBrian Carlstrom <bdc@google.com>2014-02-26 13:17:44 -0800
commita1ce1fef2d49d1d537776a5308ace7102a815fe5 (patch)
treea1afe850d9ebd21f4b751eb68e1ec3dc60dab001 /compiler/utils/scoped_hashtable_test.cc
parent930f7b843ddc6e6530439d3fdb0e2133a6292f1e (diff)
downloadandroid_art-a1ce1fef2d49d1d537776a5308ace7102a815fe5.tar.gz
android_art-a1ce1fef2d49d1d537776a5308ace7102a815fe5.tar.bz2
android_art-a1ce1fef2d49d1d537776a5308ace7102a815fe5.zip
Split up CommonTest into CommonRuntimeTest and CommonCompilerTest
Change-Id: I8dcf6b29a5aecd445f1a3ddb06386cf81dbc9c70
Diffstat (limited to 'compiler/utils/scoped_hashtable_test.cc')
-rw-r--r--compiler/utils/scoped_hashtable_test.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/compiler/utils/scoped_hashtable_test.cc b/compiler/utils/scoped_hashtable_test.cc
index 68608f01d1..1c843ebef1 100644
--- a/compiler/utils/scoped_hashtable_test.cc
+++ b/compiler/utils/scoped_hashtable_test.cc
@@ -14,8 +14,9 @@
* limitations under the License.
*/
-#include "common_test.h"
-#include "utils/scoped_hashtable.h"
+#include "scoped_hashtable.h"
+
+#include "common_runtime_test.h"
using utils::ScopedHashtable;
@@ -27,8 +28,7 @@ class Value {
int value_;
};
-class ScopedHashtableTest : public CommonTest {
-};
+class ScopedHashtableTest : public testing::Test {};
TEST_F(ScopedHashtableTest, Basics) {
ScopedHashtable<int, Value*> sht;