Commit:    f15beda158a8fbb16823baf3801409356b79cb4f
Author:    Davey Shafik <m...@daveyshafik.com>         Fri, 27 Apr 2012 
10:36:33 -0400
Parents:   3966df7fc83093766e5e6862b18b8ef03ef58e09
Branches:  master

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=f15beda158a8fbb16823baf3801409356b79cb4f

Log:
Reformat, setup MySQL DB, call run-tests directly

Changed paths:
  M  .travis.yml


Diff:
diff --git a/.travis.yml b/.travis.yml
index feff37e..9bc335b 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,11 +1,17 @@
 language: php
-# We only specify one version so we only get one worker
+
 php:
+    # We only specify one version so we only get one worker
     - 5.4
-# Compile PHP
+
+env:
+    - REPORT_EXIT_STATUS=1 TEST_PHP_EXECUTABLE=./sapi/cli/php DB=mysql
+
 before_script:
+    # Compile PHP
     - ./travis/compile.sh
-# Return 1 with failed testso
-env: REPORT_EXIT_STATUS=1
-# Run PHP's make test
-script: make test
+    # Create the MySQL test DB
+    - mysql -u root -e "CREATE DATABASE test"
+
+# Run PHPs run-tests.php 
+script: ./sapi/cli/php run-tests.php -g "FAIL,XFAIL,BORK,WARN,LEAK,SKIP"


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to