Disable some heapprofd cts tests for native bridge

These tests are relying on the fact that callstacks can provide
information about which function called malloc/free.

This is not the case for apps running with native_bridge.
For these there exists 2 different stacks (native one - visible to perfetto)
and another one for emulated architecture (to access which perfetto needs to
read and unwind second, - guest stack).

The result is that as of now all native callstacks for memory allocations
originated for emulated apps look the same and get aggregated together. And
this is why test does not pass.

Bug: 411111586
Test: run heapprofd tests on Android Emulator under native bridge
(cherry picked from https://googleplex-android-review.googlesource.com/q/commit:ada6248a1f195ed278e2956602f2f161d1baed6c)
Merged-In: I24499cd22095e3c0002bc426ff4c9d64dfb9b8e6
Change-Id: I24499cd22095e3c0002bc426ff4c9d64dfb9b8e6
3 files changed
tree: e9cee849cb1c0986a904ba0364829b428b4f4b9b
  1. .github/
  2. bazel/
  3. build_overrides/
  4. buildtools/
  5. debian/
  6. docs/
  7. examples/
  8. gn/
  9. include/
  10. infra/
  11. protos/
  12. python/
  13. src/
  14. test/
  15. third_party/
  16. tools/
  17. ui/
  18. .bazelignore
  19. .bazelrc
  20. .bazelversion
  21. .clang-format
  22. .clang-tidy
  23. .git-blame-ignore-revs
  24. .gitattributes
  25. .gitignore
  26. .gn
  27. .style.yapf
  28. Android.bp
  29. Android.bp.extras
  30. BUILD
  31. BUILD.extras
  32. BUILD.gn
  33. CHANGELOG
  34. codereview.settings
  35. DIR_METADATA
  36. heapprofd.rc
  37. LICENSE
  38. meson.build
  39. METADATA
  40. MODULE.bazel
  41. MODULE.bazel.lock
  42. MODULE_LICENSE_APACHE2
  43. OWNERS
  44. perfetto.rc
  45. perfetto_flags.aconfig
  46. PerfettoIntegrationTests.xml
  47. persistent_cfg.pbtxt
  48. PRESUBMIT.py
  49. README.chromium
  50. README.md
  51. TEST_MAPPING
  52. traced_perf.rc
  53. WATCHLISTS
  54. WORKSPACE
README.md

Perfetto - System profiling, app tracing and trace analysis

Perfetto is a production-grade open-source stack for performance instrumentation and trace analysis. It offers services and libraries and for recording system-level and app-level traces, native + java heap profiling, a library for analyzing traces using SQL and a web-based UI to visualize and explore multi-GB traces.

See https://perfetto.dev/docs or the /docs/ directory for documentation.