I found this error when i run some of my tests:

An error occurred. /batch?id=506&op=do (no information available).

And also says, in error page this:

Maximum execution time of 30 seconds exceeded PHP Fatal error database.inc 210 Unknown

Comments

vibaiher’s picture

StatusFileSize
new406 bytes

I saw this other related issue http://drupal.org/node/304328. This patch was applied only to D7, but is not applied to D6 version.
To resolve this error I added 'set_time_limit(0)' to run() function in drupal_web_test_case.php, and now, all my tests run ok.

Status: Needs review » Needs work

The last submitted patch, simpletest-set-time-limit-1280110-1.patch, failed testing.

vibaiher’s picture

StatusFileSize
new490 bytes
vibaiher’s picture

Status: Needs work » Needs review

Status: Needs review » Needs work

The last submitted patch, simpletest-set-time-limit-1280110-3.patch, failed testing.

dave reid’s picture

Status: Needs work » Closed (works as designed)

Check 6.x-2.x-dev. We currently use the same exact code from Drupal 7 which has a call to set_time_limit() in DrupalWebTestCase::setUp() with a default of 500.