Make HHBBC validate that all symbols are unique
[hiphop-php.git] / hphp / test / server / fastcgi / tests / headerTest.php
blobcfca7eb8fee3da1716e617f0c0e975c1d1ff8006
1 <?hh
3 function headerTestController($serverPort) {
4 $args = darray['Authorization' => 'foo'];
5 var_dump(fastcgi_request('localhost', $serverPort, "test_headers.php",
6 darray[], darray['PROXY' => 'foobar'], $args));
8 <<__EntryPoint>> function main(): void {
9 require_once('test_base.inc');
10 init();
11 runTest("headerTestController");