From fcd72133c376e56ba157144db6204488e9e64539 Mon Sep 17 00:00:00 2001 From: Guang Zhu Date: Fri, 11 Jun 2010 18:46:56 -0700 Subject: [PATCH] update runtest due to libcore location change Change-Id: I2f273c8952ad60b999c964b3c223cae2b52d83bd --- testrunner/test_defs/instrumentation_test.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/testrunner/test_defs/instrumentation_test.py b/testrunner/test_defs/instrumentation_test.py index 9d2f7798e..40d6bedfc 100644 --- a/testrunner/test_defs/instrumentation_test.py +++ b/testrunner/test_defs/instrumentation_test.py @@ -17,9 +17,6 @@ """TestSuite definition for Android instrumentation tests.""" -# python imports -import os - # local imports import coverage import errors @@ -33,7 +30,7 @@ class InstrumentationTestSuite(test_suite.AbstractTestSuite): DEFAULT_RUNNER = "android.test.InstrumentationTestRunner" # dependency on libcore (used for Emma) - _LIBCORE_BUILD_PATH = os.path.join("dalvik", "libcore") + _LIBCORE_BUILD_PATH = "libcore" def __init__(self): test_suite.AbstractTestSuite.__init__(self)