[Libvirt-ci] Build failed in Jenkins: libvirt-dbus-check » libvirt-fedora-rawhide #120
by ci@centos.org
See <https://ci.centos.org/job/libvirt-dbus-check/systems=libvirt-fedora-rawhi...>
------------------------------------------
[...truncated 561.02 KB...]
errread, errwrite,
errpipe_read, errpipe_write,
restore_signals, start_new_session, preexec_fn)
self._child_created = True
finally:
# be sure the FD is closed no matter what
os.close(errpipe_write)
# self._devnull is not always defined.
devnull_fd = getattr(self, '_devnull', None)
if p2cread != -1 and p2cwrite != -1 and p2cread != devnull_fd:
os.close(p2cread)
if c2pwrite != -1 and c2pread != -1 and c2pwrite != devnull_fd:
os.close(c2pwrite)
if errwrite != -1 and errread != -1 and errwrite != devnull_fd:
os.close(errwrite)
if devnull_fd is not None:
os.close(devnull_fd)
# Prevent a double close of these fds from __init__ on error.
self._closed_child_pipe_fds = True
# Wait for exec to fail or succeed; possibly raising an
# exception (limited in size)
errpipe_data = bytearray()
while True:
part = os.read(errpipe_read, 50000)
errpipe_data += part
if not part or len(errpipe_data) > 50000:
break
finally:
# be sure the FD is closed no matter what
os.close(errpipe_read)
if errpipe_data:
try:
pid, sts = os.waitpid(self.pid, 0)
if pid == self.pid:
self._handle_exitstatus(sts)
else:
self.returncode = sys.maxsize
except ChildProcessError:
pass
try:
exception_name, hex_errno, err_msg = (
errpipe_data.split(b':', 2))
# The encoding here should match the encoding
# written in by the subprocess implementations
# like _posixsubprocess
err_msg = err_msg.decode()
except ValueError:
exception_name = b'SubprocessError'
hex_errno = b'0'
err_msg = 'Bad exception data from child: {!r}'.format(
bytes(errpipe_data))
child_exception_type = getattr(
builtins, exception_name.decode('ascii'),
SubprocessError)
if issubclass(child_exception_type, OSError) and hex_errno:
errno_num = int(hex_errno, 16)
child_exec_never_called = (err_msg == "noexec")
if child_exec_never_called:
err_msg = ""
# The error must be from chdir(cwd).
err_filename = cwd
else:
err_filename = orig_executable
if errno_num != 0:
err_msg = os.strerror(errno_num)
if errno_num == errno.ENOENT:
err_msg += ': ' + repr(err_filename)
> raise child_exception_type(errno_num, err_msg, err_filename)
E FileNotFoundError: [Errno 2] No such file or directory: 'dbus-daemon': 'dbus-daemon'
/usr/lib64/python3.7/subprocess.py:1516: FileNotFoundError
___ ERROR at setup of TestStorageVolume.test_storage_vol_get_xml_description ___
tp = <class 'FileNotFoundError'>, value = None, tb = None
def reraise(tp, value, tb=None):
try:
if value is None:
value = tp()
if value.__traceback__ is not tb:
> raise value.with_traceback(tb)
/usr/lib/python3.7/site-packages/six.py:692:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
../../tests/conftest.py:11: in dbus_daemon_session
stdout=subprocess.PIPE, universal_newlines=True)
/usr/lib64/python3.7/subprocess.py:769: in __init__
restore_signals, start_new_session)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <subprocess.Popen object at 0x7efea48fff28>
args = ['dbus-daemon', '--session', '--print-address']
executable = b'dbus-daemon', preexec_fn = None, close_fds = True, pass_fds = ()
cwd = None, env = None, startupinfo = None, creationflags = 0, shell = False
p2cread = -1, p2cwrite = -1, c2pread = 8, c2pwrite = 10, errread = -1
errwrite = -1, restore_signals = True, start_new_session = False
def _execute_child(self, args, executable, preexec_fn, close_fds,
pass_fds, cwd, env,
startupinfo, creationflags, shell,
p2cread, p2cwrite,
c2pread, c2pwrite,
errread, errwrite,
restore_signals, start_new_session):
"""Execute program (POSIX version)"""
if isinstance(args, (str, bytes)):
args = [args]
else:
args = list(args)
if shell:
# On Android the default shell is at '/system/bin/sh'.
unix_shell = ('/system/bin/sh' if
hasattr(sys, 'getandroidapilevel') else '/bin/sh')
args = [unix_shell, "-c"] + args
if executable:
args[0] = executable
if executable is None:
executable = args[0]
orig_executable = executable
# For transferring possible exec failure from child to parent.
# Data format: "exception name:hex errno:description"
# Pickle is not used; it is complex and involves memory allocation.
errpipe_read, errpipe_write = os.pipe()
# errpipe_write must not be in the standard io 0, 1, or 2 fd range.
low_fds_to_close = []
while errpipe_write < 3:
low_fds_to_close.append(errpipe_write)
errpipe_write = os.dup(errpipe_write)
for low_fd in low_fds_to_close:
os.close(low_fd)
try:
try:
# We must avoid complex work that could involve
# malloc or free in the child process to avoid
# potential deadlocks, thus we do all this here.
# and pass it to fork_exec()
if env is not None:
env_list = []
for k, v in env.items():
k = os.fsencode(k)
if b'=' in k:
raise ValueError("illegal environment variable name")
env_list.append(k + b'=' + os.fsencode(v))
else:
env_list = None # Use execv instead of execve.
executable = os.fsencode(executable)
if os.path.dirname(executable):
executable_list = (executable,)
else:
# This matches the behavior of os._execvpe().
executable_list = tuple(
os.path.join(os.fsencode(dir), executable)
for dir in os.get_exec_path(env))
fds_to_keep = set(pass_fds)
fds_to_keep.add(errpipe_write)
self.pid = _posixsubprocess.fork_exec(
args, executable_list,
close_fds, tuple(sorted(map(int, fds_to_keep))),
cwd, env_list,
p2cread, p2cwrite, c2pread, c2pwrite,
errread, errwrite,
errpipe_read, errpipe_write,
restore_signals, start_new_session, preexec_fn)
self._child_created = True
finally:
# be sure the FD is closed no matter what
os.close(errpipe_write)
# self._devnull is not always defined.
devnull_fd = getattr(self, '_devnull', None)
if p2cread != -1 and p2cwrite != -1 and p2cread != devnull_fd:
os.close(p2cread)
if c2pwrite != -1 and c2pread != -1 and c2pwrite != devnull_fd:
os.close(c2pwrite)
if errwrite != -1 and errread != -1 and errwrite != devnull_fd:
os.close(errwrite)
if devnull_fd is not None:
os.close(devnull_fd)
# Prevent a double close of these fds from __init__ on error.
self._closed_child_pipe_fds = True
# Wait for exec to fail or succeed; possibly raising an
# exception (limited in size)
errpipe_data = bytearray()
while True:
part = os.read(errpipe_read, 50000)
errpipe_data += part
if not part or len(errpipe_data) > 50000:
break
finally:
# be sure the FD is closed no matter what
os.close(errpipe_read)
if errpipe_data:
try:
pid, sts = os.waitpid(self.pid, 0)
if pid == self.pid:
self._handle_exitstatus(sts)
else:
self.returncode = sys.maxsize
except ChildProcessError:
pass
try:
exception_name, hex_errno, err_msg = (
errpipe_data.split(b':', 2))
# The encoding here should match the encoding
# written in by the subprocess implementations
# like _posixsubprocess
err_msg = err_msg.decode()
except ValueError:
exception_name = b'SubprocessError'
hex_errno = b'0'
err_msg = 'Bad exception data from child: {!r}'.format(
bytes(errpipe_data))
child_exception_type = getattr(
builtins, exception_name.decode('ascii'),
SubprocessError)
if issubclass(child_exception_type, OSError) and hex_errno:
errno_num = int(hex_errno, 16)
child_exec_never_called = (err_msg == "noexec")
if child_exec_never_called:
err_msg = ""
# The error must be from chdir(cwd).
err_filename = cwd
else:
err_filename = orig_executable
if errno_num != 0:
err_msg = os.strerror(errno_num)
if errno_num == errno.ENOENT:
err_msg += ': ' + repr(err_filename)
> raise child_exception_type(errno_num, err_msg, err_filename)
E FileNotFoundError: [Errno 2] No such file or directory: 'dbus-daemon': 'dbus-daemon'
/usr/lib64/python3.7/subprocess.py:1516: FileNotFoundError
========================== 16 error in 12.37 seconds ===========================
FAIL test_storage.py (exit status: 1)
+ exit 1
Build step 'Execute shell' marked build as failure
5 years, 9 months
[Libvirt-ci] Build failed in Jenkins: virt-viewer-syntax-check » libvirt-fedora-rawhide #146
by ci@centos.org
See <https://ci.centos.org/job/virt-viewer-syntax-check/systems=libvirt-fedora...>
------------------------------------------
Started by upstream project "virt-viewer-syntax-check" build number 146
originally caused by:
Started by upstream project "virt-viewer-build" build number 180
originally caused by:
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
[EnvInject] - Loading node environment variables.
Building remotely on libvirt-fedora-rawhide (libvirt) in workspace <https://ci.centos.org/job/virt-viewer-syntax-check/systems=libvirt-fedora...>
[virt-viewer] $ /bin/sh -xe /tmp/jenkins4826813264072703595.sh
+ cd build
+ /usr/bin/gmake syntax-check
GFDL_version
TAB_in_indentation
Wundef_boolean
avoid_if_before_free
avoid_attribute_unused_in_header
cast_of_argument_to_free
cast_of_x_alloc_return_value
changelog
const_long_option
copyright_check
copyright_format
error_message_period
error_message_warn_fatal
m4_quote_check
makefile_TAB_only_indentation
makefile_at_at_check
po_check
preprocessor_indentation
prohibit_HAVE_MBRTOWC
prohibit_always-defined_macros
prohibit_argmatch_without_use
prohibit_assert_without_use
prohibit_backup_files
prohibit_c_ctype_without_use
prohibit_canonicalize_without_use
prohibit_cloexec_without_use
prohibit_close_stream_without_use
prohibit_cvs_keyword
prohibit_dirent_without_use
prohibit_doubled_word
prohibit_empty_lines_at_EOF
prohibit_error_without_use
prohibit_getopt_without_use
prohibit_hash_pjw_without_use
prohibit_have_config_h
prohibit_ignore_value_without_use
prohibit_intprops_without_use
prohibit_inttostr_without_use
prohibit_long_options_without_use
prohibit_magic_number_exit
prohibit_openat_without_use
prohibit_path_max_allocation
prohibit_posixver_without_use
prohibit_root_dev_ino_without_use
prohibit_safe_read_without_use
prohibit_same_without_use
prohibit_signal_without_use
prohibit_stddef_without_use
prohibit_stdio--_without_use
prohibit_strcmp
prohibit_stdio-safer_without_use
prohibit_strings_without_use
prohibit_test_double_equal
prohibit_test_minus_ao
prohibit_undesirable_word_seq
prohibit_verify_without_use
prohibit_xalloc_without_use
prohibit_xfreopen_without_use
proper_name_utf8_requires_ICONV
redundant_const
require_config_h
require_config_h_first
trailing_blank
unmarked_diagnostics
vulnerable_makefile_CVE-2009-4029
--- ../po/POTFILES.in
+++ ../po/POTFILES.in
@@ -16,6 +16,7 @@
src/virt-viewer-app.c
src/virt-viewer-auth.c
src/virt-viewer-display-vnc.c
+src/virt-viewer-display-vte.c
src/virt-viewer-file-transfer-dialog.c
src/virt-viewer-file.c
src/virt-viewer-main.c
maint.mk: you have changed the set of files with translatable diagnostics;
apply the above patch
gmake: *** [../maint.mk:1063: sc_po_check] Error 1
gmake: *** Waiting for unfinished jobs....
Build step 'Execute shell' marked build as failure
5 years, 10 months
[Libvirt-ci] Build failed in Jenkins: virt-viewer-syntax-check » libvirt-freebsd-12 #146
by ci@centos.org
See <https://ci.centos.org/job/virt-viewer-syntax-check/systems=libvirt-freebs...>
------------------------------------------
Started by upstream project "virt-viewer-syntax-check" build number 146
originally caused by:
Started by upstream project "virt-viewer-build" build number 180
originally caused by:
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
[EnvInject] - Loading node environment variables.
Building remotely on libvirt-freebsd-12 (libvirt) in workspace <https://ci.centos.org/job/virt-viewer-syntax-check/systems=libvirt-freebs...>
[virt-viewer] $ /bin/sh -xe /tmp/jenkins1293966188030660553.sh
+ cd build
+ /usr/local/bin/gmake syntax-check
GFDL_version
TAB_in_indentation
Wundef_boolean
avoid_attribute_unused_in_header
cast_of_argument_to_free
cast_of_x_alloc_return_value
avoid_if_before_free
changelog
const_long_option
copyright_check
copyright_format
error_message_period
error_message_warn_fatal
m4_quote_check
makefile_TAB_only_indentation
makefile_at_at_check
po_check
preprocessor_indentation
prohibit_HAVE_MBRTOWC
prohibit_always-defined_macros
prohibit_argmatch_without_use
prohibit_assert_without_use
prohibit_backup_files
prohibit_c_ctype_without_use
prohibit_canonicalize_without_use
prohibit_cloexec_without_use
prohibit_cvs_keyword
prohibit_close_stream_without_use
prohibit_dirent_without_use
prohibit_empty_lines_at_EOF
prohibit_doubled_word
prohibit_error_without_use
prohibit_getopt_without_use
prohibit_have_config_h
prohibit_hash_pjw_without_use
prohibit_ignore_value_without_use
prohibit_intprops_without_use
prohibit_inttostr_without_use
prohibit_long_options_without_use
prohibit_magic_number_exit
prohibit_openat_without_use
prohibit_path_max_allocation
prohibit_posixver_without_use
prohibit_root_dev_ino_without_use
prohibit_safe_read_without_use
prohibit_same_without_use
prohibit_signal_without_use
prohibit_stddef_without_use
prohibit_stdio-safer_without_use
prohibit_stdio--_without_use
prohibit_strcmp
prohibit_strings_without_use
prohibit_test_double_equal
prohibit_test_minus_ao
prohibit_undesirable_word_seq
prohibit_verify_without_use
prohibit_xfreopen_without_use
prohibit_xalloc_without_use
proper_name_utf8_requires_ICONV
redundant_const
require_config_h
require_config_h_first
trailing_blank
unmarked_diagnostics
vulnerable_makefile_CVE-2009-4029
--- ../po/POTFILES.in
+++ ../po/POTFILES.in
@@ -16,6 +16,7 @@
src/virt-viewer-app.c
src/virt-viewer-auth.c
src/virt-viewer-display-vnc.c
+src/virt-viewer-display-vte.c
src/virt-viewer-file-transfer-dialog.c
src/virt-viewer-file.c
src/virt-viewer-main.c
maint.mk: you have changed the set of files with translatable diagnostics;
apply the above patch
gmake: *** [../maint.mk:1063: sc_po_check] Error 1
gmake: *** Waiting for unfinished jobs....
Build step 'Execute shell' marked build as failure
5 years, 10 months
[Libvirt-ci] Build failed in Jenkins: virt-viewer-syntax-check » libvirt-fedora-29 #146
by ci@centos.org
See <https://ci.centos.org/job/virt-viewer-syntax-check/systems=libvirt-fedora...>
------------------------------------------
Started by upstream project "virt-viewer-syntax-check" build number 146
originally caused by:
Started by upstream project "virt-viewer-build" build number 180
originally caused by:
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
[EnvInject] - Loading node environment variables.
Building remotely on libvirt-fedora-29 (libvirt) in workspace <https://ci.centos.org/job/virt-viewer-syntax-check/systems=libvirt-fedora...>
[virt-viewer] $ /bin/sh -xe /tmp/jenkins264059117458825564.sh
+ cd build
+ /usr/bin/gmake syntax-check
TAB_in_indentation
GFDL_version
Wundef_boolean
avoid_attribute_unused_in_header
avoid_if_before_free
cast_of_argument_to_free
cast_of_x_alloc_return_value
changelog
const_long_option
copyright_check
copyright_format
error_message_period
error_message_warn_fatal
m4_quote_check
makefile_TAB_only_indentation
makefile_at_at_check
po_check
preprocessor_indentation
prohibit_HAVE_MBRTOWC
prohibit_always-defined_macros
prohibit_argmatch_without_use
prohibit_assert_without_use
prohibit_backup_files
prohibit_c_ctype_without_use
prohibit_canonicalize_without_use
prohibit_cloexec_without_use
prohibit_cvs_keyword
prohibit_dirent_without_use
prohibit_close_stream_without_use
prohibit_doubled_word
prohibit_empty_lines_at_EOF
prohibit_error_without_use
prohibit_getopt_without_use
prohibit_have_config_h
prohibit_hash_pjw_without_use
prohibit_ignore_value_without_use
prohibit_intprops_without_use
prohibit_long_options_without_use
prohibit_inttostr_without_use
prohibit_magic_number_exit
prohibit_openat_without_use
prohibit_path_max_allocation
prohibit_posixver_without_use
prohibit_root_dev_ino_without_use
prohibit_safe_read_without_use
prohibit_same_without_use
prohibit_signal_without_use
prohibit_stddef_without_use
prohibit_stdio--_without_use
prohibit_stdio-safer_without_use
prohibit_strcmp
prohibit_strings_without_use
prohibit_test_double_equal
prohibit_test_minus_ao
prohibit_undesirable_word_seq
prohibit_verify_without_use
prohibit_xalloc_without_use
prohibit_xfreopen_without_use
proper_name_utf8_requires_ICONV
redundant_const
require_config_h
require_config_h_first
trailing_blank
unmarked_diagnostics
vulnerable_makefile_CVE-2009-4029
--- ../po/POTFILES.in
+++ ../po/POTFILES.in
@@ -16,6 +16,7 @@
src/virt-viewer-app.c
src/virt-viewer-auth.c
src/virt-viewer-display-vnc.c
+src/virt-viewer-display-vte.c
src/virt-viewer-file-transfer-dialog.c
src/virt-viewer-file.c
src/virt-viewer-main.c
maint.mk: you have changed the set of files with translatable diagnostics;
apply the above patch
gmake: *** [../maint.mk:1063: sc_po_check] Error 1
gmake: *** Waiting for unfinished jobs....
Build step 'Execute shell' marked build as failure
5 years, 10 months
[Libvirt-ci] Build failed in Jenkins: virt-viewer-syntax-check » libvirt-debian-8 #146
by ci@centos.org
See <https://ci.centos.org/job/virt-viewer-syntax-check/systems=libvirt-debian...>
------------------------------------------
Started by upstream project "virt-viewer-syntax-check" build number 146
originally caused by:
Started by upstream project "virt-viewer-build" build number 180
originally caused by:
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
[EnvInject] - Loading node environment variables.
Building remotely on libvirt-debian-8 (libvirt) in workspace <https://ci.centos.org/job/virt-viewer-syntax-check/systems=libvirt-debian...>
[virt-viewer] $ /bin/sh -xe /tmp/jenkins3562386738840863589.sh
+ cd build
+ /usr/bin/make syntax-check
GFDL_version
TAB_in_indentation
Wundef_boolean
avoid_attribute_unused_in_header
avoid_if_before_free
cast_of_argument_to_free
cast_of_x_alloc_return_value
changelog
const_long_option
copyright_check
copyright_format
m4_quote_check
error_message_warn_fatal
makefile_TAB_only_indentation
error_message_period
makefile_at_at_check
preprocessor_indentation
po_check
prohibit_HAVE_MBRTOWC
prohibit_always-defined_macros
prohibit_argmatch_without_use
prohibit_backup_files
prohibit_assert_without_use
prohibit_canonicalize_without_use
prohibit_c_ctype_without_use
prohibit_cloexec_without_use
prohibit_close_stream_without_use
prohibit_cvs_keyword
prohibit_doubled_word
prohibit_dirent_without_use
prohibit_empty_lines_at_EOF
prohibit_error_without_use
prohibit_getopt_without_use
prohibit_hash_pjw_without_use
prohibit_have_config_h
prohibit_ignore_value_without_use
prohibit_intprops_without_use
prohibit_inttostr_without_use
prohibit_magic_number_exit
prohibit_long_options_without_use
prohibit_openat_without_use
prohibit_path_max_allocation
prohibit_posixver_without_use
prohibit_root_dev_ino_without_use
prohibit_same_without_use
prohibit_safe_read_without_use
prohibit_signal_without_use
prohibit_stddef_without_use
prohibit_stdio--_without_use
prohibit_stdio-safer_without_use
prohibit_strcmp
prohibit_test_minus_ao
prohibit_undesirable_word_seq
prohibit_strings_without_use
prohibit_test_double_equal
prohibit_verify_without_use
prohibit_xalloc_without_use
proper_name_utf8_requires_ICONV
prohibit_xfreopen_without_use
redundant_const
require_config_h
require_config_h_first
unmarked_diagnostics
trailing_blank
vulnerable_makefile_CVE-2009-4029
maint.mk: skipping test sc_preprocessor_indentation: cppi not installed
--- ../po/POTFILES.in
+++ ../po/POTFILES.in
@@ -16,6 +16,7 @@
src/virt-viewer-app.c
src/virt-viewer-auth.c
src/virt-viewer-display-vnc.c
+src/virt-viewer-display-vte.c
src/virt-viewer-file-transfer-dialog.c
src/virt-viewer-file.c
src/virt-viewer-main.c
maint.mk: you have changed the set of files with translatable diagnostics;
apply the above patch
../maint.mk:1063: recipe for target 'sc_po_check' failed
make: *** [sc_po_check] Error 1
make: *** Waiting for unfinished jobs....
Build step 'Execute shell' marked build as failure
5 years, 10 months
[Libvirt-ci] Build failed in Jenkins: virt-viewer-syntax-check » libvirt-fedora-28 #146
by ci@centos.org
See <https://ci.centos.org/job/virt-viewer-syntax-check/systems=libvirt-fedora...>
------------------------------------------
Started by upstream project "virt-viewer-syntax-check" build number 146
originally caused by:
Started by upstream project "virt-viewer-build" build number 180
originally caused by:
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
[EnvInject] - Loading node environment variables.
Building remotely on libvirt-fedora-28 (libvirt) in workspace <https://ci.centos.org/job/virt-viewer-syntax-check/systems=libvirt-fedora...>
[virt-viewer] $ /bin/sh -xe /tmp/jenkins6148666286001187.sh
+ cd build
+ /usr/bin/gmake syntax-check
GFDL_version
TAB_in_indentation
Wundef_boolean
avoid_attribute_unused_in_header
avoid_if_before_free
cast_of_argument_to_free
cast_of_x_alloc_return_value
changelog
copyright_check
const_long_option
copyright_format
error_message_period
error_message_warn_fatal
m4_quote_check
makefile_TAB_only_indentation
makefile_at_at_check
po_check
preprocessor_indentation
prohibit_HAVE_MBRTOWC
prohibit_always-defined_macros
prohibit_argmatch_without_use
prohibit_assert_without_use
prohibit_backup_files
prohibit_c_ctype_without_use
prohibit_canonicalize_without_use
prohibit_cloexec_without_use
prohibit_close_stream_without_use
prohibit_cvs_keyword
prohibit_dirent_without_use
prohibit_doubled_word
prohibit_empty_lines_at_EOF
prohibit_error_without_use
prohibit_getopt_without_use
prohibit_hash_pjw_without_use
prohibit_have_config_h
prohibit_ignore_value_without_use
prohibit_intprops_without_use
prohibit_inttostr_without_use
prohibit_long_options_without_use
prohibit_magic_number_exit
prohibit_openat_without_use
prohibit_path_max_allocation
prohibit_posixver_without_use
prohibit_root_dev_ino_without_use
prohibit_safe_read_without_use
prohibit_same_without_use
prohibit_signal_without_use
prohibit_stddef_without_use
prohibit_stdio--_without_use
prohibit_stdio-safer_without_use
prohibit_strcmp
prohibit_strings_without_use
prohibit_test_double_equal
prohibit_test_minus_ao
prohibit_undesirable_word_seq
prohibit_verify_without_use
prohibit_xalloc_without_use
prohibit_xfreopen_without_use
proper_name_utf8_requires_ICONV
redundant_const
require_config_h
trailing_blank
require_config_h_first
vulnerable_makefile_CVE-2009-4029
unmarked_diagnostics
--- ../po/POTFILES.in
+++ ../po/POTFILES.in
@@ -16,6 +16,7 @@
src/virt-viewer-app.c
src/virt-viewer-auth.c
src/virt-viewer-display-vnc.c
+src/virt-viewer-display-vte.c
src/virt-viewer-file-transfer-dialog.c
src/virt-viewer-file.c
src/virt-viewer-main.c
maint.mk: you have changed the set of files with translatable diagnostics;
apply the above patch
gmake: *** [../maint.mk:1063: sc_po_check] Error 1
gmake: *** Waiting for unfinished jobs....
Build step 'Execute shell' marked build as failure
5 years, 10 months
[Libvirt-ci] Build failed in Jenkins: virt-viewer-syntax-check » libvirt-freebsd-11 #146
by ci@centos.org
See <https://ci.centos.org/job/virt-viewer-syntax-check/systems=libvirt-freebs...>
------------------------------------------
Started by upstream project "virt-viewer-syntax-check" build number 146
originally caused by:
Started by upstream project "virt-viewer-build" build number 180
originally caused by:
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
[EnvInject] - Loading node environment variables.
Building remotely on libvirt-freebsd-11 (libvirt) in workspace <https://ci.centos.org/job/virt-viewer-syntax-check/systems=libvirt-freebs...>
[virt-viewer] $ /bin/sh -xe /tmp/jenkins7072778737938243556.sh
+ cd build
+ /usr/local/bin/gmake syntax-check
GFDL_version
TAB_in_indentation
Wundef_boolean
avoid_attribute_unused_in_header
avoid_if_before_free
cast_of_argument_to_free
cast_of_x_alloc_return_value
changelog
const_long_option
copyright_check
copyright_format
error_message_period
error_message_warn_fatal
m4_quote_check
makefile_TAB_only_indentation
makefile_at_at_check
po_check
preprocessor_indentation
prohibit_HAVE_MBRTOWC
prohibit_argmatch_without_use
prohibit_always-defined_macros
prohibit_assert_without_use
prohibit_backup_files
prohibit_c_ctype_without_use
prohibit_canonicalize_without_use
prohibit_cloexec_without_use
prohibit_close_stream_without_use
prohibit_cvs_keyword
prohibit_dirent_without_use
prohibit_doubled_word
prohibit_empty_lines_at_EOF
prohibit_error_without_use
prohibit_getopt_without_use
prohibit_hash_pjw_without_use
prohibit_have_config_h
prohibit_ignore_value_without_use
prohibit_intprops_without_use
prohibit_long_options_without_use
prohibit_inttostr_without_use
prohibit_magic_number_exit
prohibit_openat_without_use
prohibit_path_max_allocation
prohibit_posixver_without_use
prohibit_root_dev_ino_without_use
prohibit_safe_read_without_use
prohibit_same_without_use
prohibit_signal_without_use
prohibit_stddef_without_use
prohibit_stdio--_without_use
prohibit_stdio-safer_without_use
prohibit_strcmp
prohibit_strings_without_use
prohibit_test_double_equal
prohibit_test_minus_ao
prohibit_undesirable_word_seq
prohibit_verify_without_use
prohibit_xalloc_without_use
prohibit_xfreopen_without_use
proper_name_utf8_requires_ICONV
redundant_const
require_config_h
require_config_h_first
trailing_blank
unmarked_diagnostics
vulnerable_makefile_CVE-2009-4029
--- ../po/POTFILES.in
+++ ../po/POTFILES.in
@@ -16,6 +16,7 @@
src/virt-viewer-app.c
src/virt-viewer-auth.c
src/virt-viewer-display-vnc.c
+src/virt-viewer-display-vte.c
src/virt-viewer-file-transfer-dialog.c
src/virt-viewer-file.c
src/virt-viewer-main.c
maint.mk: you have changed the set of files with translatable diagnostics;
apply the above patch
gmake: *** [../maint.mk:1063: sc_po_check] Error 1
gmake: *** Waiting for unfinished jobs....
Build step 'Execute shell' marked build as failure
5 years, 10 months
[Libvirt-ci] Build failed in Jenkins: virt-viewer-syntax-check » libvirt-centos-7 #146
by ci@centos.org
See <https://ci.centos.org/job/virt-viewer-syntax-check/systems=libvirt-centos...>
------------------------------------------
Started by upstream project "virt-viewer-syntax-check" build number 146
originally caused by:
Started by upstream project "virt-viewer-build" build number 180
originally caused by:
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
[EnvInject] - Loading node environment variables.
Building remotely on libvirt-centos-7 (libvirt) in workspace <https://ci.centos.org/job/virt-viewer-syntax-check/systems=libvirt-centos...>
[virt-viewer] $ /bin/sh -xe /tmp/jenkins5302769104637562467.sh
+ cd build
+ /usr/bin/gmake syntax-check
GFDL_version
TAB_in_indentation
Wundef_boolean
avoid_attribute_unused_in_header
avoid_if_before_free
cast_of_argument_to_free
cast_of_x_alloc_return_value
changelog
const_long_option
copyright_check
copyright_format
error_message_warn_fatal
error_message_period
m4_quote_check
makefile_TAB_only_indentation
makefile_at_at_check
po_check
preprocessor_indentation
prohibit_HAVE_MBRTOWC
prohibit_always-defined_macros
prohibit_argmatch_without_use
prohibit_assert_without_use
prohibit_backup_files
prohibit_c_ctype_without_use
prohibit_canonicalize_without_use
prohibit_cloexec_without_use
prohibit_close_stream_without_use
prohibit_cvs_keyword
prohibit_dirent_without_use
prohibit_doubled_word
prohibit_empty_lines_at_EOF
prohibit_error_without_use
prohibit_getopt_without_use
prohibit_hash_pjw_without_use
prohibit_have_config_h
prohibit_ignore_value_without_use
prohibit_intprops_without_use
prohibit_inttostr_without_use
prohibit_long_options_without_use
prohibit_magic_number_exit
prohibit_openat_without_use
prohibit_path_max_allocation
prohibit_root_dev_ino_without_use
prohibit_safe_read_without_use
prohibit_posixver_without_use
prohibit_same_without_use
prohibit_signal_without_use
prohibit_stddef_without_use
prohibit_stdio--_without_use
prohibit_stdio-safer_without_use
prohibit_strcmp
prohibit_test_double_equal
prohibit_test_minus_ao
prohibit_undesirable_word_seq
prohibit_strings_without_use
prohibit_verify_without_use
prohibit_xalloc_without_use
prohibit_xfreopen_without_use
proper_name_utf8_requires_ICONV
redundant_const
require_config_h
trailing_blank
unmarked_diagnostics
require_config_h_first
vulnerable_makefile_CVE-2009-4029
maint.mk: skipping test sc_preprocessor_indentation: cppi not installed
--- ../po/POTFILES.in
+++ ../po/POTFILES.in
@@ -16,6 +16,7 @@
src/virt-viewer-app.c
src/virt-viewer-auth.c
src/virt-viewer-display-vnc.c
+src/virt-viewer-display-vte.c
src/virt-viewer-file-transfer-dialog.c
src/virt-viewer-file.c
src/virt-viewer-main.c
maint.mk: you have changed the set of files with translatable diagnostics;
apply the above patch
gmake: *** [sc_po_check] Error 1
gmake: *** Waiting for unfinished jobs....
Build step 'Execute shell' marked build as failure
5 years, 10 months
[Libvirt-ci] Build failed in Jenkins: virt-viewer-syntax-check » libvirt-debian-9 #146
by ci@centos.org
See <https://ci.centos.org/job/virt-viewer-syntax-check/systems=libvirt-debian...>
------------------------------------------
Started by upstream project "virt-viewer-syntax-check" build number 146
originally caused by:
Started by upstream project "virt-viewer-build" build number 180
originally caused by:
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
Started by an SCM change
[EnvInject] - Loading node environment variables.
Building remotely on libvirt-debian-9 (libvirt) in workspace <https://ci.centos.org/job/virt-viewer-syntax-check/systems=libvirt-debian...>
[virt-viewer] $ /bin/sh -xe /tmp/jenkins76610955549277178.sh
+ cd build
+ /usr/bin/make syntax-check
GFDL_version
Wundef_boolean
TAB_in_indentation
avoid_attribute_unused_in_header
avoid_if_before_free
cast_of_argument_to_free
cast_of_x_alloc_return_value
changelog
const_long_option
copyright_check
copyright_format
error_message_period
error_message_warn_fatal
m4_quote_check
makefile_TAB_only_indentation
makefile_at_at_check
po_check
preprocessor_indentation
prohibit_HAVE_MBRTOWC
prohibit_always-defined_macros
prohibit_argmatch_without_use
prohibit_backup_files
prohibit_assert_without_use
prohibit_c_ctype_without_use
prohibit_cloexec_without_use
prohibit_canonicalize_without_use
prohibit_close_stream_without_use
prohibit_cvs_keyword
prohibit_dirent_without_use
prohibit_doubled_word
prohibit_empty_lines_at_EOF
prohibit_error_without_use
prohibit_getopt_without_use
prohibit_hash_pjw_without_use
prohibit_have_config_h
prohibit_ignore_value_without_use
prohibit_intprops_without_use
prohibit_inttostr_without_use
prohibit_long_options_without_use
prohibit_magic_number_exit
prohibit_path_max_allocation
prohibit_openat_without_use
prohibit_posixver_without_use
prohibit_root_dev_ino_without_use
prohibit_safe_read_without_use
prohibit_same_without_use
prohibit_signal_without_use
prohibit_stddef_without_use
prohibit_stdio--_without_use
prohibit_stdio-safer_without_use
prohibit_strcmp
prohibit_strings_without_use
prohibit_test_double_equal
prohibit_test_minus_ao
prohibit_undesirable_word_seq
prohibit_verify_without_use
prohibit_xalloc_without_use
prohibit_xfreopen_without_use
proper_name_utf8_requires_ICONV
require_config_h
redundant_const
require_config_h_first
trailing_blank
vulnerable_makefile_CVE-2009-4029
unmarked_diagnostics
maint.mk: skipping test sc_preprocessor_indentation: cppi not installed
--- ../po/POTFILES.in
+++ ../po/POTFILES.in
@@ -16,6 +16,7 @@
src/virt-viewer-app.c
src/virt-viewer-auth.c
src/virt-viewer-display-vnc.c
+src/virt-viewer-display-vte.c
src/virt-viewer-file-transfer-dialog.c
src/virt-viewer-file.c
src/virt-viewer-main.c
maint.mk: you have changed the set of files with translatable diagnostics;
apply the above patch
../maint.mk:1063: recipe for target 'sc_po_check' failed
make: *** [sc_po_check] Error 1
make: *** Waiting for unfinished jobs....
Build step 'Execute shell' marked build as failure
5 years, 10 months
[Libvirt-ci] Build failed in Jenkins: virt-manager-check » libvirt-debian-9 #295
by ci@centos.org
See <https://ci.centos.org/job/virt-manager-check/systems=libvirt-debian-9/295...>
------------------------------------------
Started by upstream project "virt-manager-check" build number 295
originally caused by:
Started by upstream project "virt-manager-build" build number 296
originally caused by:
Started by upstream project "libosinfo-build" build number 78
originally caused by:
Started by an SCM change
[EnvInject] - Loading node environment variables.
Building remotely on libvirt-debian-9 (libvirt) in workspace <https://ci.centos.org/job/virt-manager-check/systems=libvirt-debian-9/ws/>
[virt-manager] $ /bin/sh -xe /tmp/jenkins2554062308203019048.sh
+ /usr/bin/python3 ./setup.py test
running test
............................................................................................................................................................................................................F........................................s.......................................................................................................................................................................................................ssssssssss
======================================================================
FAIL: testCLI0082virt_install_cdrom_url (tests.clitest.CLITests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "<https://ci.centos.org/job/virt-manager-check/systems=libvirt-debian-9/ws/...",> line 1134, in <lambda>
return lambda s: cmdtemplate(s, cmd)
File "<https://ci.centos.org/job/virt-manager-check/systems=libvirt-debian-9/ws/...",> line 1133, in cmdtemplate
_cmdobj.run(self)
File "<https://ci.centos.org/job/virt-manager-check/systems=libvirt-debian-9/ws/...",> line 255, in run
tests.fail(err)
AssertionError: ./virt-install --connect __virtinst_test__test://<https://ci.centos.org/job/virt-manager-check/systems=libvirt-debian-9/ws/...> --name foobar --ram 64 --print-step all --nographics --noautoconsole --nodisks --cdrom http://example.com/path/to/some.iso
Conversion outputs did not match.
--- tests/cli-test-xml/compare/virt-install-cdrom-url.xml
+++ Generated Output
@@ -1,3 +1,5 @@
+<https://ci.centos.org/job/virt-manager-check/systems=libvirt-debian-9/ws/...>:205: Warning: g_object_unref: assertion 'G_IS_OBJECT (object)' failed
+ media = libosinfo.Media.create_from_location(location, None)
<domain type="test">
<name>foobar</name>
<uuid>00000000-1111-2222-3333-444444444444</uuid>
----------------------------------------------------------------------
Ran 455 tests in 63.576s
FAILED (failures=1, skipped=11)
Build step 'Execute shell' marked build as failure
5 years, 10 months