function system_test_lock_exit

Try to acquire a specific lock, and then exit.

2 string references to 'system_test_lock_exit'
LockFunctionalTest::testLockAcquire in drupal/core/modules/system/lib/Drupal/system/Tests/Lock/LockFunctionalTest.php
Confirms that we can acquire and release locks in two parallel requests.
system_test_menu in drupal/core/modules/system/tests/modules/system_test/system_test.module
Implements hook_menu().

File

drupal/core/modules/system/tests/modules/system_test/system_test.module, line 183

Code

function system_test_lock_exit() {
  if (lock()
    ->acquire('system_test_lock_exit', 900)) {
    echo 'TRUE: Lock successfully acquired in system_test_lock_exit()';

    // The shut-down function should release the lock.
    exit;
  }
  else {
    return 'FALSE: Lock not acquired in system_test_lock_exit()';
  }
}