Skip to content
  • Max Reitz's avatar
    iotests: Fix 083 for out-of-tree builds · f5264553
    Max Reitz authored
    
    
    iotest 083 filters out debug messages from nbd, which are prefixed (and
    recognized) by __FILE__. However, the current filter (/^nbd\.c…/) is
    valid for in-tree builds only, as out-of-tree builds will have a path
    before that filename (e.g. "/tmp/qemu/nbd.c"). Fix this by adding .*
    before "nbd\.c".
    
    While working on this, also fix the regexes: '.' should be escaped and a
    single backslash is not enough for escaping when enclosed by double
    quotes.
    
    Signed-off-by: default avatarMax Reitz <mreitz@redhat.com>
    Signed-off-by: default avatarKevin Wolf <kwolf@redhat.com>
    f5264553