kuryr-libnetwork/tools/ostestr_compat_shim.sh
Hongbin Lu 47a4d9a339 Support running subset of unit tests
Change-Id: I1d5a2fe244081a33ebb1741cb4872d43e84c299b
Closes-Bug: #1766012
2018-04-21 20:31:41 +00:00

9 lines
175 B
Bash
Executable File

#!/bin/sh
# preserve old behavior of using an arg as a regex when '--' is not present
case $@ in
(*--*) ostestr $@;;
('') ostestr;;
(*) ostestr --regex "$@"
esac