blob: 7c02878f32c918f78c905c876b26add427be6de2 [file] [log] [blame]
// Copyright (c) 2016, the R8 project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
package com.android.tools.r8.internal;
import com.android.tools.r8.CompilationMode;
import org.junit.Test;
public class YouTubeProguardJarVerificationTest extends YouTubeCompilationBase {
public YouTubeProguardJarVerificationTest() {
super(12, 17);
}
@Test
public void buildDebugFromProguardJar() throws Exception {
runR8AndCheckVerification(CompilationMode.DEBUG, PG_JAR);
}
@Test
public void buildReleaseFromProguardJar() throws Exception {
runR8AndCheckVerification(CompilationMode.RELEASE, PG_JAR);
}
}