Re-enable checksum checks for .odex and .art
Bug: 192690283
Test: TH
Change-Id: I2f1c83062da829c444e8e7ad4300fd8e3a20be1e
diff --git a/compos/tests/java/android/compos/test/ComposTestCase.java b/compos/tests/java/android/compos/test/ComposTestCase.java
index 01d8ff1..6c3bc65 100644
--- a/compos/tests/java/android/compos/test/ComposTestCase.java
+++ b/compos/tests/java/android/compos/test/ComposTestCase.java
@@ -137,8 +137,6 @@
private String checksumDirectoryContent(CommandRunner runner, String path) throws Exception {
// Sort by filename (second column) to make comparison easier.
- // TODO(b/192690283): Figure out how to make this work for files odex/oat/art files.
- return runner.run(
- "find " + path + " -type f -exec sha256sum {} \\; | grep vdex | sort -k2");
+ return runner.run("find " + path + " -type f -exec sha256sum {} \\; | sort -k2");
}
}