Merge "Re-enable checksum checks for .odex and .art"
diff --git a/compos/tests/java/android/compos/test/ComposTestCase.java b/compos/tests/java/android/compos/test/ComposTestCase.java
index ba8d970..5f4bd00 100644
--- a/compos/tests/java/android/compos/test/ComposTestCase.java
+++ b/compos/tests/java/android/compos/test/ComposTestCase.java
@@ -149,8 +149,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");
}
}