PHP Classes

File: tests/travis-php52.sh

Recommend this page to a friend!
  Classes of Scott Arciszewski   PHP Sodium Compat   tests/travis-php52.sh   Download  
File: tests/travis-php52.sh
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Sodium Compat
Cryptographic functions of libsodium in pure PHP
Author: By
Last change:
Date: 4 years ago
Size: 923 bytes
 

Contents

Class file image Download
#!/usr/bin/env bash rm -rf tests/compat # We don't need these. vendor/bin/phpunit-php52 EXITCOMMAND=$? if [[ "$EXITCOMMAND" -ne 0 ]]; then echo "PHPunit (first run) exited with return value $EXITCOMMAND." exit $EXITCOMMAND fi vendor/bin/phpunit-php52 --bootstrap autoload-fast.php EXITCOMMAND=$? if [[ "$EXITCOMMAND" -ne 0 ]]; then echo "PHPunit (second run) exited with return value $EXITCOMMAND." exit $EXITCOMMAND fi if [[ $CHECK_MBSTRING -eq 1 ]]; then php -dmbstring.func_overload=7 vendor/bin/phpunit-php52 EXITCOMMAND=$? if [[ "$EXITCOMMAND" -ne 0 ]]; then echo "PHPunit (third run) exited with return value $EXITCOMMAND." exit $EXITCOMMAND fi php -dmbstring.func_overload=7 vendor/bin/phpunit-php52 --bootstrap autoload-fast.php EXITCOMMAND=$? if [[ "$EXITCOMMAND" -ne 0 ]]; then echo "PHPunit (fourth run) exited with return value $EXITCOMMAND." exit $EXITCOMMAND fi fi