tests: Dont run BindSparse if feature not present

Change-Id: I9f4723c0a61ef269919b44cc9ca557085ce760d7
diff --git a/tests/layer_validation_tests.cpp b/tests/layer_validation_tests.cpp
index 966b556..51eb378 100644
--- a/tests/layer_validation_tests.cpp
+++ b/tests/layer_validation_tests.cpp
@@ -19811,6 +19811,7 @@
 
     auto index = m_device->graphics_queue_node_index_;
     if (!(m_device->queue_props[index].queueFlags & VK_QUEUE_SPARSE_BINDING_BIT)) return;
+    if (!m_device->phy().features().sparseBinding) return;
 
     m_errorMonitor->ExpectSuccess();