Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c446aa9c authored by Makoto Onuki's avatar Makoto Onuki
Browse files

Ravenwood reafatoring

Move all the tests to the `com.android.ravenwoodtest` package in order
to tell them part from actual ravenwood code.

This allows various tools to ignore ravenwood code without ignoring
ravenwood test code.

Test: ./ravenwood/scripts/run-ravenwood-tests.sh
Bug: 292141694

Change-Id: I48728784e7dd2e5aea3327da793923c8ef3b795d
parent f3679599
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -42,7 +42,7 @@ extern "C" jint JNI_OnLoad(JavaVM* vm, void* /* reserved */)
    ALOGI("%s: JNI_OnLoad", __FILE__);

    int res = jniRegisterNativeMethods(env,
            "com/android/platform/test/ravenwood/bivalenttest/RavenwoodJniTest",
            "com/android/ravenwoodtest/bivalenttest/RavenwoodJniTest",
            sMethods, NELEM(sMethods));
    if (res < 0) {
        return res;
+1 −1
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.android.platform.test.ravenwood.bivalenttest;
package com.android.ravenwoodtest.bivalenttest;

import static org.junit.Assert.assertEquals;

+1 −1
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.android.platform.test.ravenwood.bivalenttest;
package com.android.ravenwoodtest.bivalenttest;

import android.platform.test.annotations.DisabledOnRavenwood;
import android.platform.test.ravenwood.RavenwoodClassRule;
+1 −1
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.android.platform.test.ravenwood.bivalenttest;
package com.android.ravenwoodtest.bivalenttest;

import android.platform.test.ravenwood.RavenwoodClassRule;
import android.platform.test.ravenwood.RavenwoodRule;
+1 −1
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.android.platform.test.ravenwood.bivalenttest;
package com.android.ravenwoodtest.bivalenttest;

import static junit.framework.Assert.assertEquals;

Loading