Home
last modified time | relevance | path

Searched refs:assertCommandSucceeds (Results 1 – 4 of 4) sorted by relevance

/cts/hostsidetests/compilation/src/android/compilation/cts/
DCompilationTest.java86 mUtils.assertCommandSucceeds("pm compile -m speed -f " + STATUS_CHECKER_PKG); in testCompile()
94 mUtils.assertCommandSucceeds("pm compile -m verify -f " + STATUS_CHECKER_PKG); in testCompile()
102 mUtils.assertCommandSucceeds("pm delete-dexopt " + STATUS_CHECKER_PKG); in testCompile()
119 mUtils.assertCommandSucceeds("pm clear " + TEST_APP_PKG); in testArtService()
122 mUtils.assertCommandSucceeds("pm compile -m verify -f " + TEST_APP_PKG); in testArtService()
124 String dump = mUtils.assertCommandSucceeds("pm art dump " + TEST_APP_PKG); in testArtService()
128 dump = mUtils.assertCommandSucceeds("dumpsys package " + TEST_APP_PKG); in testArtService()
133 mUtils.assertCommandSucceeds("pm compile -m speed-profile " + TEST_APP_PKG); in testArtService()
135 dump = mUtils.assertCommandSucceeds("pm art dump " + TEST_APP_PKG); in testArtService()
139 dump = mUtils.assertCommandSucceeds("dumpsys package " + TEST_APP_PKG); in testArtService()
[all …]
DAdbRootDependentCompilationTest.java230 mUtils.assertCommandSucceeds( in testSecondaryDexUseLoading()
236 String dump = mUtils.assertCommandSucceeds("pm art dump " + STATUS_CHECKER_PKG); in testSecondaryDexUseLoading()
245 mUtils.assertCommandSucceeds(String.format( in testSecondaryDexUseLoading()
306 mUtils.assertCommandSucceeds(commandArray); in executeCompile()
326 mUtils.assertCommandSucceeds("chmod", "640", targetPath); in writeSystemManagedProfile()
327 mUtils.assertCommandSucceeds("chown", owner, targetPath); in writeSystemManagedProfile()
335 String[] response = mUtils.assertCommandSucceeds( in getCompilerFilter()
362 mUtils.assertCommandSucceeds("oatdump", "--oat-file=" + odexFilePath).split("\n"); in getCompiledMethods()
424 String output = mUtils.assertCommandSucceeds(command); in assertCommandOutputsLines()
455 mUtils.assertCommandSucceeds( in applyPackageDexUsageChanges()
[all …]
DPreRebootDexoptTest.java47 mUtils.assertCommandSucceeds("pm art pr-dexopt-job --test"); in test()
DUtils.java49 public String assertCommandSucceeds(String... command) throws Exception { in assertCommandSucceeds() method in Utils