Explicitly exit from the am instrument after test completes

To speed up the test. For a trivial am instrument run:

[Before]
0m01.53s real     0m00.16s user     0m00.16s system

[After]
0m00.72s real     0m00.21s user     0m00.11s system

Bug: 204195830
Test: am instrument -w
Change-Id: I66196d1db9169681dabb2e5dacdd18e6105ad75a
This commit is contained in:
Jing Ji
2021-11-01 13:43:53 -07:00
parent f637a0d63d
commit 209ddf9871

View File

@@ -545,6 +545,8 @@ public class Instrument {
mWm.setAnimationScales(oldAnims);
}
}
// Exit from here instead of going down the path of normal shutdown which is slow.
System.exit(0);
}
private static String readLogcat(long startTimeMs) {