diff --git a/core/modules/user/src/MigratePassword.php b/core/modules/user/src/MigratePassword.php index 4116c16..a462aa9 100644 --- a/core/modules/user/src/MigratePassword.php +++ b/core/modules/user/src/MigratePassword.php @@ -24,6 +24,13 @@ class MigratePassword implements PasswordInterface { protected $enabled = FALSE; /** + * Inidicates if the migrated password needs hashing. + * + * @var bool + */ + protected $needsHashing = TRUE; + + /** * Builds the replacement password service class. * * @param \Drupal\Core\Password\PasswordInterface $original_password diff --git a/core/scripts/run-tests.sh b/core/scripts/run-tests.sh index df61328..ed30757 100755 --- a/core/scripts/run-tests.sh +++ b/core/scripts/run-tests.sh @@ -102,8 +102,12 @@ exit(SIMPLETEST_SCRIPT_EXIT_SUCCESS); } -$test_list = simpletest_script_get_test_list(); - +//$test_list = simpletest_script_get_test_list(); +$test_list = [ + '\Drupal\migrate_drupal_ui\Tests\d7\MigrateUpgrade7Test', + '\Drupal\Tests\file\Kernel\Migrate\d7\MigrateFileTest', +]; +$args['repeat'] = 40; // Try to allocate unlimited time to run the tests. drupal_set_time_limit(0); simpletest_script_reporter_init();