]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - bin/sh/tests/expansion/cmdsubst19.0
MFC r314637: sh: Add some already working tests that exercise new code paths
[FreeBSD/stable/10.git] / bin / sh / tests / expansion / cmdsubst19.0
1 # $FreeBSD$
2
3 b=200 c=30 d=5 x=4
4 r=$(echo a)$(($(echo b) + ${x+$(echo c)} + ${x-$(echo d)}))$(echo e)
5 [ "$r" = a234e ]