diff options
author | Anand Avati <avati@redhat.com> | 2014-01-24 18:30:32 -0800 |
---|---|---|
committer | Vijay Bellur <vbellur@redhat.com> | 2014-01-25 02:48:03 -0800 |
commit | 9a34ea6a0a95154013676cabf8528b2679fb36c4 (patch) | |
tree | 74481804931b2d995de97a692ada5487279f05eb | |
parent | d9fbebde0d2ae166c750121f807c440f6ea65478 (diff) |
tests: support regex in EXPECT constructs
Instead of just strings, provide the ability to specify a regex
of the pattern to expect
Change-Id: I6ada978197dceecc28490a2a40de73a04ab9abcd
Signed-off-by: Anand Avati <avati@redhat.com>
Reviewed-on: http://review.gluster.org/6788
Reviewed-by: Pranith Kumar Karampuri <pkarampu@redhat.com>
Tested-by: Gluster Build System <jenkins@build.gluster.com>
-rw-r--r-- | tests/include.rc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/include.rc b/tests/include.rc index 0369d26109b..44259872a9d 100644 --- a/tests/include.rc +++ b/tests/include.rc @@ -67,10 +67,10 @@ function test_expect_footer() local a=$2 local err="" - if [ "x${e}" != "x${a}" ]; then + if ! [[ "$a" =~ $e ]]; then err="Got \"$a\" instead of \"$e\"" fi - [[ "x${e}" == "x${a}" ]]; + [[ "$a" =~ $e ]]; test_footer "$err"; } @@ -96,11 +96,11 @@ function test_expect_not_footer() local a=$2 local err="" - if [ "x${e}" == "x${a}" ]; then + if [[ "$a" =~ $e ]]; then err="Got \"$a\" when not expecting it" fi - [[ "x${e}" != "x${a}" ]]; + ! [[ "$a" =~ "$e" ]]; test_footer "$err"; } |