aboutsummaryrefslogtreecommitdiff
path: root/eclipse/plugins/com.android.ide.eclipse.tests
diff options
context:
space:
mode:
authorTor Norbye <tnorbye@google.com>2014-11-26 10:59:44 -0800
committerTor Norbye <tnorbye@google.com>2014-11-26 13:28:35 -0800
commit19de1c1b19635fb32767658f9755fadf20bfb75e (patch)
tree53b88dd46d3e10a92209fbb5d342cb5b63e4549f /eclipse/plugins/com.android.ide.eclipse.tests
parent7b26ed51415fc2e4536c6841a37c3b5ff2f143ac (diff)
downloadsdk-19de1c1b19635fb32767658f9755fadf20bfb75e.tar.gz
72760: Lint errors prevent exporting of application
Change-Id: I710982520f2ac40674dca7f63760f525051342a2
Diffstat (limited to 'eclipse/plugins/com.android.ide.eclipse.tests')
-rw-r--r--eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/wizards/templates/TemplateHandlerTest.java9
1 files changed, 4 insertions, 5 deletions
diff --git a/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/wizards/templates/TemplateHandlerTest.java b/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/wizards/templates/TemplateHandlerTest.java
index a93bc3ea7..9d3bc60c6 100644
--- a/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/wizards/templates/TemplateHandlerTest.java
+++ b/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/wizards/templates/TemplateHandlerTest.java
@@ -35,7 +35,6 @@ import com.android.sdklib.IAndroidTarget;
import com.android.utils.GrabProcessOutput;
import com.android.utils.GrabProcessOutput.IProcessOutput;
import com.android.utils.GrabProcessOutput.Wait;
-import com.android.tools.lint.checks.BuiltinIssueRegistry;
import com.android.tools.lint.checks.ManifestDetector;
import com.android.tools.lint.checks.SecurityDetector;
import com.android.tools.lint.client.api.Configuration;
@@ -156,7 +155,7 @@ public class TemplateHandlerTest extends SdkLoadingTestCase {
}
public void testNewBlankProject() throws Exception {
- Stopwatch stopwatch = new Stopwatch();
+ Stopwatch stopwatch = Stopwatch.createUnstarted();
stopwatch.start();
checkProjectWithActivity(null);
stopwatch.stop();
@@ -268,7 +267,7 @@ public class TemplateHandlerTest extends SdkLoadingTestCase {
// ---- Test support code below ----
private void checkCreateActivityInProject(String activityName) throws Exception {
- Stopwatch stopwatch = new Stopwatch();
+ Stopwatch stopwatch = Stopwatch.createUnstarted();
stopwatch.start();
File templateFile = findTemplate("activities", activityName);
sProjectTestedSeparately.add(templateFile);
@@ -279,7 +278,7 @@ public class TemplateHandlerTest extends SdkLoadingTestCase {
}
private void checkCreateTemplate(String category, String name) throws Exception {
- Stopwatch stopwatch = new Stopwatch();
+ Stopwatch stopwatch = Stopwatch.createUnstarted();
stopwatch.start();
File templateFile = findTemplate(category, name);
assertNotNull(templateFile);
@@ -763,7 +762,7 @@ public class TemplateHandlerTest extends SdkLoadingTestCase {
System.setProperty("com.android.tools.lint.bindir", AdtPrefs.getPrefs().getOsSdkFolder()
+ File.separator + FD_TOOLS);
- LintDriver driver = new LintDriver(new BuiltinIssueRegistry(), new LintClient() {
+ LintDriver driver = new LintDriver(EclipseLintClient.getRegistry(), new LintClient() {
@Override
public void report(@NonNull Context context,
@NonNull Issue issue, @NonNull Severity severity,