Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
--TEST--
2
--SKIPIF--
3
<?php
4
if (substr(PHP_OS, 0, 3) == 'WIN') die("skip this test is for non-Windows platforms only");
5
?>
6
--FILE--
7
<?php
8
 
9
require_once 'tests-config.php';
10
require_once 'System/Daemon.php';
11
 
12
System_Daemon::setOption("appName", "test");
13
System_Daemon::setOption("logVerbosity", System_Daemon::LOG_EMERG);
14
 
15
$res = System_Daemon::isInBackground();
16
var_dump($res);
17
 
18
?>
19
--EXPECT--
20
bool(false)