17 строки
792 B
PHP
17 строки
792 B
PHP
<?php
|
|
global $name, $pretty_name, $lower_is_better;
|
|
|
|
$name = "emberperf"; // Corresponds to the name in benchmarks_shell.py. An unique name without spaces.
|
|
$pretty_name = "Ember perf"; // The name that will be visible on the AWFY site.
|
|
$lower_is_better = false; // If the benchmark is measuring time executing. Lower is better. If the benchmark is a score this needs to be false.
|
|
|
|
$migrate = function() {
|
|
global $name, $pretty_name, $lower_is_better;
|
|
mysql_query("INSERT INTO `awfy_suite` (`name`, `description`, `better_direction`, `visible`) VALUES ('$name', '$pretty_name', '".(($lower_is_better)?"-1":"1")."', '1')") or die(mysql_error());
|
|
};
|
|
|
|
$rollback = function() {
|
|
global $name;
|
|
mysql_query("DELETE FROM `awfy_suite` WHERE `name` = '$name'") or die(mysql_error());
|
|
};
|