Fix multiple inclusion guards to match new pathnames

Change-Id: Id7735be1d75bc315733b1773fba45c1deb8ace43
diff --git a/runtime/common_test.h b/runtime/common_test.h
index f03b1f9..73c47b5 100644
--- a/runtime/common_test.h
+++ b/runtime/common_test.h
@@ -14,6 +14,9 @@
  * limitations under the License.
  */
 
+#ifndef ART_RUNTIME_COMMON_TEST_H_
+#define ART_RUNTIME_COMMON_TEST_H_
+
 #include <dirent.h>
 #include <dlfcn.h>
 #include <sys/mman.h>
@@ -586,3 +589,5 @@
 }
 
 }  // namespace std
+
+#endif  // ART_RUNTIME_COMMON_TEST_H_