[pkg-resolver] Disable resolve_succeeds.identity

This change disables the long-running resolve_succeeds.identity test.
This test contributes most of the time taken to execute:

fuchsia-pkg://fuchsia.com/pkg-resolver-integration-tests#meta/resolve-succeeds.cmx

This test target already takes a long time, but it times out
consistently on asan bots when BlobFS compression is increased. Such an
increase is planned to land soon as a part of demand paging of
compressed blobs.

Change-Id: Ieda3aeb400fdf85919659749d2b75444f2f99e60
Reviewed-on: https://fuchsia-review.googlesource.com/c/fuchsia/+/377987
Reviewed-by: Kevin Wells <kevinwells@google.com>
Reviewed-by: John Wittrock <wittrock@google.com>
Testability-Review: Kevin Wells <kevinwells@google.com>
Commit-Queue: Mark Dittmer <markdittmer@google.com>
diff --git a/src/sys/pkg/tests/pkg-resolver/src/resolve_succeeds.rs b/src/sys/pkg/tests/pkg-resolver/src/resolve_succeeds.rs
index 6a1cced..16f0876 100644
--- a/src/sys/pkg/tests/pkg-resolver/src/resolve_succeeds.rs
+++ b/src/sys/pkg/tests/pkg-resolver/src/resolve_succeeds.rs
@@ -298,6 +298,7 @@
 }
 
 #[fasync::run_singlethreaded(test)]
+#[ignore] // TODO(49497): This should be replaced with at test over fewer large blobs.
 async fn identity() {
     verify_resolve(Package::identity().await.unwrap()).await
 }