Add empty gtest_test for debugging

Change-Id: Ia31eeee3ee5c7fa7629a03e9c1e8069d4773449a
diff --git a/build/Android.common.mk b/build/Android.common.mk
index 08ee5e3..f7678fe 100644
--- a/build/Android.common.mk
+++ b/build/Android.common.mk
@@ -318,6 +318,7 @@
 	src/dex_instruction_visitor_test.cc \
 	src/exception_test.cc \
 	src/file_test.cc \
+	src/gtest_test.cc \
 	src/heap_test.cc \
 	src/image_test.cc \
 	src/indirect_reference_table_test.cc \
diff --git a/src/gtest_test.cc b/src/gtest_test.cc
new file mode 100644
index 0000000..a40751d
--- /dev/null
+++ b/src/gtest_test.cc
@@ -0,0 +1,20 @@
+/*
+ * Copyright (C) 2011 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include "gtest/gtest.h"
+
+// Sanity test that gtest alone works on host and target
+TEST(GTest, Nop) {}