Skip to content

Commit

Permalink
HHVM version ouput has changed
Browse files Browse the repository at this point in the history
  • Loading branch information
cebe committed Aug 15, 2014
1 parent 7bbfbb0 commit 89921e0
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ before_script:
script:
- vendor/bin/phpunit --verbose --coverage-clover=coverage.clover --exclude-group mssql,oci,wincache,xcache,zenddata
- |
if (php --version | grep -i HHVM > /dev/null); then
if (php --version | grep -i HipHop > /dev/null); then
echo "skipping application tests on HHVM"
else
cd apps/basic && php vendor/bin/codecept run
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/data/travis/cubrid-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# install CUBRID DBMS

if (php --version | grep -i HHVM > /dev/null); then
if (php --version | grep -i HipHop > /dev/null); then
echo "Skipping CUBRID on HHVM"
exit 0
fi
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/data/travis/init-apps.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

if (php --version | grep -i HHVM > /dev/null); then
if (php --version | grep -i HipHop > /dev/null); then
echo "skipping application init on HHVM"
else

Expand Down
2 changes: 1 addition & 1 deletion tests/unit/data/travis/memcache-setup.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

if (php --version | grep -i HHVM > /dev/null); then
if (php --version | grep -i HipHop > /dev/null); then
echo "skipping memcache on HHVM"
else
mkdir -p ~/.phpenv/versions/$(phpenv version-name)/etc
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/data/travis/setup-apps.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

if (php --version | grep -i HHVM > /dev/null); then
if (php --version | grep -i HipHop > /dev/null); then
echo "skipping application setup on HHVM"
else

Expand Down

0 comments on commit 89921e0

Please sign in to comment.