]> rtime.felk.cvut.cz Git - omk.git/blob - tests/no-print-directory
Run test scripts via bash to have better location reporting
[omk.git] / tests / no-print-directory
1 #!/bin/bash
2
3 . ./functions.sh
4
5 touch config.omk-default
6 make 2>/dev/null|grep "Entering directory.*_build" && error "Entering directory message should be suppressed"
7 make distclean
8 make V=2 2>/dev/null|grep 'Entering directory.*_build' || error "Entering directory message didn't appear"
9