summaryrefslogtreecommitdiff
path: root/tests/unit/java/com/android/internal/net/VpnProfileTest.java
diff options
context:
space:
mode:
authorRemi NGUYEN VAN <reminv@google.com>2021-06-17 15:34:25 +0900
committerRemi NGUYEN VAN <reminv@google.com>2021-06-25 10:10:12 +0900
commit05dd1ba54005b15d92daf6f26329acf91fb3debb (patch)
treeda1179455dcf62f01d4a70b16da056a3c8907509 /tests/unit/java/com/android/internal/net/VpnProfileTest.java
parentd4c644cf4d257115aebe635639bed1bd9c6fa098 (diff)
Skip connectivity unit tests before S
The tests are packaged together with other tests in a common coverage suite, so need to be individually annotated so that they are skipped before S. They do not need to pass on platforms older than S, because such platforms will not updated with the code that is tested. Bug: 187935317 Test: atest ConnectivityCoverageTests on R Change-Id: I10da45ae023e7f1e8cd11ec857b84346892a3fa8
Diffstat (limited to 'tests/unit/java/com/android/internal/net/VpnProfileTest.java')
-rw-r--r--tests/unit/java/com/android/internal/net/VpnProfileTest.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/unit/java/com/android/internal/net/VpnProfileTest.java b/tests/unit/java/com/android/internal/net/VpnProfileTest.java
index cb0f0710d6..64cbc4e13b 100644
--- a/tests/unit/java/com/android/internal/net/VpnProfileTest.java
+++ b/tests/unit/java/com/android/internal/net/VpnProfileTest.java
@@ -25,7 +25,9 @@ import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertTrue;
import android.net.IpSecAlgorithm;
+import android.os.Build;
+import androidx.test.filters.SdkSuppress;
import androidx.test.filters.SmallTest;
import org.junit.Test;
@@ -39,6 +41,7 @@ import java.util.List;
/** Unit tests for {@link VpnProfile}. */
@SmallTest
@RunWith(JUnit4.class)
+@SdkSuppress(minSdkVersion = Build.VERSION_CODES.S, codeName = "S")
public class VpnProfileTest {
private static final String DUMMY_PROFILE_KEY = "Test";