# vi /etc/default/grub
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash video=hyperv_fb:1920×1080"
# update-grub
# sync; reboot
Reference:
https://blogs.msdn.microsoft.com/virtual_pc_guy/2014/09/19/changing-ubuntu-screen-resolution-in-a-hyper-v-vm/
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash video=hyperv_fb:1920×1080"
:w /tmp/filename
:r /tmp/filename
let g:vdebug_options = {}
let g:vdebug_options["port"] = 9009
; Enable xdebug extension module
zend_extension=xdebug.so
;zend_extension=/usr/lib64/php/modules/xdebug.so
xdebug.default_enable=1
xdebug.remote_enable=1
xdebug.remote_handler=dbgp
xdebug.remote_host=localhost
xdebug.remote_port=9009
xdebug.remote_log=/tmp/xdebug.log
xdebug.remote_connect_back=0
xdebug.remote_autostart=0
xdebug.remote_mode=req
xdebug.max_nesting_level=1000
<?php
here();
function here() {
xdebug_break();
echo name('Jun');
}
function name($name) {
$name .= '1';
return 'Hello ' . $name . ' ' . date('Y-m-d H:i:s');
}
vim-common.x86_64 2:7.4.160-1.el7 @base
vim-enhanced.x86_64 2:7.4.160-1.el7 @base
vim-filesystem.x86_64 2:7.4.160-1.el7 @base
vim-minimal.x86_64 2:7.4.160-1.el7 @anaconda
group_package_types=default, mandatory, optional
VIM - Vi IMproved 7.4 (2013 Aug 10, compiled Jul 24 2016 14:27:26)
Included patches: 1-2102
...
+lua +multi_byte +perl +python +ruby
1
/**
* @expectedException PHPUnit_Framework_Error
*/
public function testFailingInclude()
{
include 'not_existing_file.php';
}
/**
* @expectedException \PHPUnit\Framework\Error\Warning
*/
public function testFailingInclude()
{
include 'not_existing_file.php';
}
public function testFailingInclude()
{
$this->expectException(\PHPUnit\Framework\Error\Error::class);
include 'not_existing_file.php';
}