diff options
author | Emmanuel Dreyfus <manu@netbsd.org> | 2014-10-29 01:17:25 +0100 |
---|---|---|
committer | Vijay Bellur <vbellur@redhat.com> | 2014-10-30 01:37:17 -0700 |
commit | fb2e0a4afbe3263ebda3e1d2b72d921b2d7e2c50 (patch) | |
tree | 1e8f47abc6e39e7f25a098b08238db5ef919f4ed /tests/include.rc | |
parent | 886eb63fc729d3effea292ef92e02168898d8205 (diff) |
Regression test portability: TAP
Even with successful tests on NetBSD, we had a failure message at
the end: "No plan found in TAP output"
This was caused by a white space left padded numerical variable.
Stripping the white spaces fixes the problem.
While there add SKIP_TEST for NetBSD on unspported tests so that
it does not triger a failure.
BUG: 1129939
Change-Id: I8d0bc125c4208974657977568d838ee2dd19783c
Signed-off-by: Emmanuel Dreyfus <manu@netbsd.org>
Reviewed-on: http://review.gluster.org/8981
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Vijay Bellur <vbellur@redhat.com>
Diffstat (limited to 'tests/include.rc')
-rw-r--r-- | tests/include.rc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/include.rc b/tests/include.rc index 1a0fb06002f..28d4ab744ff 100644 --- a/tests/include.rc +++ b/tests/include.rc @@ -97,7 +97,7 @@ for line in $expect_tests; do done IFS=$x_ifs -echo 1..$testcnt +echo "1..`echo $testcnt`" t=1 |