Changeset 19518
- Timestamp:
- 06/24/09 21:15:18 (8 months ago)
- Files:
-
- branches/1.3/test/unit/cache/sfSQLiteCacheTest.php (modified) (1 diff)
- branches/1.3/test/unit/plugin/sfPearEnvironmentTest.php (modified) (1 diff)
- branches/1.3/test/unit/plugin/sfPearRestPluginTest.php (modified) (1 diff)
- branches/1.3/test/unit/plugin/sfPluginManagerTest.php (modified) (1 diff)
- branches/1.3/test/unit/storage/sfMySQLStorageTest.php (modified) (3 diffs)
- branches/1.3/test/unit/storage/sfMySQLiStorageTest.php (modified) (3 diffs)
- branches/1.3/test/unit/storage/sfPDOSessionStorageTest.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.3/test/unit/cache/sfSQLiteCacheTest.php
r10505 r19518 18 18 { 19 19 $t->skip('SQLite extension not loaded, skipping tests', $plan); 20 exit(0);20 return; 21 21 } 22 22 branches/1.3/test/unit/plugin/sfPearEnvironmentTest.php
r15415 r19518 19 19 { 20 20 $t->skip('PEAR must be installed', 3); 21 exit(0);21 return; 22 22 } 23 23 branches/1.3/test/unit/plugin/sfPearRestPluginTest.php
r15415 r19518 19 19 { 20 20 $t->skip('PEAR must be installed', 5); 21 exit(0);21 return; 22 22 } 23 23 branches/1.3/test/unit/plugin/sfPluginManagerTest.php
r15415 r19518 19 19 { 20 20 $t->skip('PEAR must be installed', 40); 21 exit(0);21 return; 22 22 } 23 23 branches/1.3/test/unit/storage/sfMySQLStorageTest.php
r10590 r19518 19 19 { 20 20 $t->skip('Mysql extension must be loaded', $plan); 21 exit(0);21 return; 22 22 } 23 23 … … 32 32 { 33 33 $t->skip('Mysql credentials needed to run these tests', $plan); 34 exit(0);34 return; 35 35 } 36 36 … … 45 45 $t->diag($e->getMessage()); 46 46 $t->skip('Unable to connect to MySQL database, skipping', $plan); 47 exit(0);47 return; 48 48 } 49 49 branches/1.3/test/unit/storage/sfMySQLiStorageTest.php
r10577 r19518 19 19 { 20 20 $t->skip('Mysqli extension must be loaded', $plan); 21 exit(0); 21 22 return; 22 23 } 23 24 … … 32 33 { 33 34 $t->skip('Mysql credentials needed to run these tests', $plan); 34 exit(0); 35 36 return; 35 37 } 36 38 … … 45 47 $t->diag($e->getMessage()); 46 48 $t->skip('Unable to connect to MySQL database, skipping', $plan); 47 exit(0);49 return; 48 50 } 49 51 branches/1.3/test/unit/storage/sfPDOSessionStorageTest.php
r12202 r19518 17 17 { 18 18 $t->skip('SQLite needed to run these tests', $tests); 19 exit(0);19 return; 20 20 } 21 21

