blob: 6e99c4ed0234687a2c15ee2541f252ac524bd434 [file] [log] [blame]
/*
* Copyright (C) 2020 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.cts.tagging;
import com.android.cts.tagging.TaggingBaseTest;
import com.google.common.collect.ImmutableSet;
public class TaggingDefaultTest extends TaggingBaseTest {
protected static final String TEST_APK = "CtsHostsideTaggingNoneApp.apk";
protected static final String TEST_PKG = "android.cts.tagging.none";
@Override
protected void setUp() throws Exception {
super.setUp();
installPackage(TEST_APK, true);
}
public void testCompatFeatureEnabled() throws Exception {
if (supportsTaggedPointers) {
runDeviceCompatTest(TEST_PKG, ".TaggingTest", "testHeapTaggingEnabled",
/*enabledChanges*/ImmutableSet.of(NATIVE_HEAP_POINTER_TAGGING_CHANGE_ID),
/*disabledChanges*/ ImmutableSet.of());
} else {
// Ensure that even if the compat flag is set to true, tagged pointers don't
// get enabled on incompatible devices. Ensure that we don't check the statsd
// report of the feature status, as it won't be present on kernel-unsupported
// devices.
runDeviceCompatTestReported(TEST_PKG, ".TaggingTest", "testHeapTaggingDisabled",
/*enabledChanges*/ImmutableSet.of(NATIVE_HEAP_POINTER_TAGGING_CHANGE_ID),
/*disabledChanges*/ ImmutableSet.of(),
/*reportedEnabledChanges*/ ImmutableSet.of(),
/*reportedDisabledChanges*/ ImmutableSet.of());
}
}
public void testCompatFeatureDisabled() throws Exception {
if (!supportsTaggedPointers) {
return;
}
runDeviceCompatTest(TEST_PKG, ".TaggingTest", "testHeapTaggingDisabled",
/*enabledChanges*/ImmutableSet.of(),
/*disabledChanges*/ ImmutableSet.of(NATIVE_HEAP_POINTER_TAGGING_CHANGE_ID));
}
}