Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test/rescan-partitions.sh: refine search for created partition
Unit test rescan-partitions.sh can fail because the grep test looking for the expected partition is overly broad and can match multiple pmem devices. /root/ndctl/build/meson-logs/testlog.txt reports this failure: test/rescan-partitions.sh: failed at line 50 An example of an improper grep is: 'pmem10 pmem12 pmem1p1' when only 'pmem1p1' was expected Replace the faulty grep with a query of the lsblk JSON output that examines the children of this blockdev only and matches on size. This type of pesky issue is probably arising as the unit tests are being run in more complex environments and may also be due to other unit tests not properly cleaning up after themselves. No matter the cause this change makes this test more robust and that's a good thing! Reported-by: Ira Weiny <[email protected]> Reviewed-by: Vishal Verma <[email protected]> Link: https://lore.kernel.org/r/[email protected]/ Signed-off-by: Alison Schofield <[email protected]>
- Loading branch information