Regular expressions are not shell globs. So "any symbol" is expressed by a dot, not a question mark. In this case, the confusion lead to a too liberal expectation, hence the test passed. Fix it nevertheless.
Signed-off-by: Klaus Aehlig <[email protected]> --- test/hs/shelltests/htools-hroller.test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/hs/shelltests/htools-hroller.test b/test/hs/shelltests/htools-hroller.test index 925ff9d..e2e6ea9 100644 --- a/test/hs/shelltests/htools-hroller.test +++ b/test/hs/shelltests/htools-hroller.test @@ -20,5 +20,5 @@ node-01-001 >>>= 0 ./test/hs/hroller --node-tags=blue --no-headers -t $TESTDATA_DIR/multiple-tags.data ->>>/node-01-00.,node-01-00.,node-01-00?/ +>>>/node-01-00.,node-01-00.,node-01-00./ >>>= 0 -- 1.8.2.1
