zdtm: Add more verbosity to deleted_dev failure

Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
This commit is contained in:
Pavel Emelyanov 2014-07-02 13:33:18 +04:00
parent 0ce9ce408a
commit daccf5ec97

View file

@ -50,6 +50,8 @@ int main(int argc, char **argv)
if (st.st_mode != mode || st.st_rdev != dev) {
fail("%s is no longer the device file we had", filename);
test_msg("mode %x want %x, dev %x want %x\n",
st.st_mode, mode, st.st_rdev, dev);
goto out;
}