[v9_10] use posix-compatible shell in system tests

3839.	[test]		Use only posix-compatible shell in system tests.
			[RT #35625]

(cherry picked from commit 60988462e5)
This commit is contained in:
Evan Hunt
2014-05-06 22:06:28 -07:00
parent 0146ff3740
commit 812cf443bb
85 changed files with 232 additions and 183 deletions

View File

@@ -14,11 +14,14 @@
# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
# PERFORMANCE OF THIS SOFTWARE.
SYSTEMTESTTOP=..
. $SYSTEMTESTTOP/conf.sh
echo "I:(Native PKCS#11)" >&2
rsafail=0 eccfail=0
sh ../testcrypto.sh -q rsa || rsafail=1
sh ../testcrypto.sh -q ecdsa || eccfail=1
$SHELL ../testcrypto.sh -q rsa || rsafail=1
$SHELL ../testcrypto.sh -q ecdsa || eccfail=1
if [ $rsafail = 0 -a $eccfail = 0 ]; then
echo both > supported