Count partitions starting with sd prefix

A test in AttachVolumeShelveTestJSON only counted the partitions
starting with vd making the test fail in the case where
partitions started with sd instead.
This fix also adds sd to the grep regex.

Change-Id: I118a0c3678d5fe0b91aeb24bc80f4d351f71e3cb
Closes-Bug: 1582730
diff --git a/tempest/api/compute/volumes/test_attach_volume.py b/tempest/api/compute/volumes/test_attach_volume.py
index fa3fdfe..05c23ee 100644
--- a/tempest/api/compute/volumes/test_attach_volume.py
+++ b/tempest/api/compute/volumes/test_attach_volume.py
@@ -200,7 +200,7 @@
             server=self.server,
             servers_client=self.servers_client)
 
-        command = 'grep vd /proc/partitions | wc -l'
+        command = 'grep [vs]d /proc/partitions | wc -l'
         nb_partitions = linux_client.exec_command(command).strip()
         self.assertEqual(number_of_partition, nb_partitions)