blob: 2f530f45c885f61f54bd983ba598c4a95f0459af [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.CompilationException;
import com.android.tools.r8.CompilationMode;
import com.android.tools.r8.shaking.ProguardRuleParserException;
import java.io.IOException;
import java.util.concurrent.ExecutionException;
import org.junit.Test;
public class R8GMSCoreV7VerificationTest extends GMSCoreCompilationTestBase {
@Test
public void verify()
throws ExecutionException, IOException, ProguardRuleParserException, CompilationException {
runR8AndCheckVerification(CompilationMode.RELEASE, GMSCORE_V7_DIR);
}
}