summaryrefslogtreecommitdiff
path: root/tests/test-linedir-r/check-lines.awk
blob: 6a1e5ece084581c3677883cd6e9e81d1618a3d9f (plain)
1
2
3
4
5
6
7
{
  if( /#line/ && $1 != ($3 - 1)) {
    printf "Line directive mismatch at line %d: %s\n", NR, $0;
    exit 1;
  }
}