]> sourceware.org Git - lvm2.git/commitdiff
tests: hints check if strace exists
authorDavid Teigland <teigland@redhat.com>
Tue, 21 May 2019 19:23:01 +0000 (14:23 -0500)
committerDavid Teigland <teigland@redhat.com>
Tue, 21 May 2019 19:24:57 +0000 (14:24 -0500)
avoid test failure if test system does not
have strace

test/shell/hints.sh

index 31628b0e88294e2c7b471b1b42f2748934306295..019912e33fc1284440aab3558975db7c1dd62a57 100644 (file)
@@ -53,12 +53,15 @@ grep -v -E "$dev1|$dev2" $HINTS > tmptest
 not grep scan: tmptest
 
 # test that 'pvs' submits only two reads, one for each PV in hints
+
+if [ -e "/usr/bin/strace" ]; then
 strace -e io_submit pvs 2>&1|tee tmptest
 test "$(grep io_submit tmptest | wc -l)" -eq 2
 
 # test that 'pvs -a' submits six reads, one for each device
 strace -e io_submit pvs -a 2>&1|tee tmptest
 test "$(grep io_submit tmptest | wc -l)" -eq 6
+fi
 
 #
 # vg2 uses dev3,dev4
This page took 0.033157 seconds and 5 git commands to generate.