1--TEST--
2GH-797: Disabled $preserveGlobalState does not load bootstrap.php.
3--FILE--
4<?php
5
6$_SERVER['argv'][1] = '--no-configuration';
7$_SERVER['argv'][]  = '--process-isolation';
8$_SERVER['argv'][]  = '--bootstrap';
9$_SERVER['argv'][]  = __DIR__ . '/797/bootstrap797.php';
10$_SERVER['argv'][]  = __DIR__ . '/797/Issue797Test.php';
11
12require __DIR__ . '/../../bootstrap.php';
13PHPUnit_TextUI_Command::main();
14?>
15--EXPECTF--
16PHPUnit %s by Sebastian Bergmann and contributors.
17
18.                                                                   1 / 1 (100%)
19
20Time: %s, Memory: %s
21
22OK (1 test, 1 assertion)
23