[lsan][mesa] Suppress leak sanitizer on mesa state_pool_no_free test.

Leak sanitizer detected bugs on the above tests. We suppress
the leak sanitizer on the leaky targets for now, and these leaks
need to be fixed to fully enable leak detector.

Bug: 46753
Change-Id: Ia352c18186fbf4af9d1aedcbf3a0e68fced71497
diff --git a/src/intel/vulkan/tests/BUILD.gn b/src/intel/vulkan/tests/BUILD.gn
index 866ebd0..a1704e5 100644
--- a/src/intel/vulkan/tests/BUILD.gn
+++ b/src/intel/vulkan/tests/BUILD.gn
@@ -93,4 +93,7 @@
     "$mesa_build_root/include:vulkan",
     "..:vulkan_internal",
   ]
+
+  # TODO(46753): Fix the leaks and remove this.
+  deps += [ "//build/config/sanitizers:suppress-lsan.DO-NOT-USE-THIS" ]
 }