File: rrd_007.phpt

package info (click to toggle)
php-rrd 2.0.3%2B1.1.3-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 496 kB
  • sloc: ansic: 2,447; xml: 665; makefile: 58; php: 3
file content (17 lines) | stat: -rw-r--r-- 324 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--TEST--
rrd_create test
--SKIPIF--
<?php include('skipif.inc'); ?>
--FILE--
<?php
$params = array(
	"--start", 920804400,
	"DS:speed:COUNTER:600:U:U",
	"RRA:AVERAGE:0.5:1:24",
	"RRA:AVERAGE:0.5:6:10"
);
$retval = rrd_create(dirname(__FILE__) . "/rrd_create_test.rrd", $params);
var_dump($retval);
?>
--EXPECTF--
bool(true)