We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Drupal bug: http://drupal.org/node/943572
Latest Drupal code: http://drupalcode.org/project/simpletest.git/blob/refs/heads/6.x-2.x:/drupal_web_test_case.php#l3108
Patch for Pressflow 6.26
Index: modules/simpletest/drupal_web_test_case.php =================================================================== --- modules/simpletest/drupal_web_test_case.php (revision 7131) +++ modules/simpletest/drupal_web_test_case.php (working copy) @@ -2624,10 +2624,12 @@ if ($original_file_directory) { $file_directory = $original_file_directory; $class = $test_class; - $verbose = variable_get('simpletest_verbose', FALSE); - $directory = $file_directory . '/simpletest/verbose'; -// return file_prepare_directory($directory, FILE_CREATE_DIRECTORY); - return file_check_directory($directory, FILE_CREATE_DIRECTORY); + $verbose = variable_get('simpletest_verbose', TRUE); + $directory = $file_directory . '/simpletest'; + file_check_directory($directory, FILE_CREATE_DIRECTORY); + $directory = $directory . '/verbose'; + $writable = file_check_directory($directory, FILE_CREATE_DIRECTORY); + return $writable; } return FALSE; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Drupal bug: http://drupal.org/node/943572
Latest Drupal code:
http://drupalcode.org/project/simpletest.git/blob/refs/heads/6.x-2.x:/drupal_web_test_case.php#l3108
Patch for Pressflow 6.26
The text was updated successfully, but these errors were encountered: