You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cd thirdparty/jsonnet/test_suite
ls *.jsonnet | grep -v '^error' | while read line; do if [ -f "${line}.golden" ]; then echo $line; fi; done | sed -r 's/^(.*)\.jsonnet$/testcase0 "\1" `Success;/'
ls *.jsonnet | grep -v '^error' | while read line; do if [ ! -f "${line}.golden" ]; then echo $line; fi; done | sed -r 's/^(.*)\.jsonnet$/testcase0 "\1" `SuccessSimple;/'
ls *.jsonnet | grep '^error' | while read line; do if [ -f "${line}.golden" ]; then echo $line; fi; done | sed -r 's/^(.*)\.jsonnet$/testcase0 "\1" `Error;/'
ls *.jsonnet | grep '^error' | while read line; do if [ ! -f "${line}.golden" ]; then echo $line; fi; done | sed -r 's/^(.*)\.jsonnet$/testcase0 "\1" `ErrorSimple;/'