Displaying 9 results from an estimated 9 matches for "network_test".
2009 Nov 03
0
[PATCH server] suggest ip address for nics/bondings on edit host/vm network forms
...| 11 +++++++
src/app/models/physical_network.rb | 6 ++++
src/app/models/vlan.rb | 6 ++++
src/app/services/host_service.rb | 2 +
src/app/views/host/edit_network.rhtml | 4 ++-
src/test/unit/ip_address_test.rb | 17 +++++++++++
src/test/unit/network_test.rb | 19 ++++++++++++
9 files changed, 117 insertions(+), 2 deletions(-)
diff --git a/src/app/controllers/vm_controller.rb b/src/app/controllers/vm_controller.rb
index 9860843..c4ad7ce 100644
--- a/src/app/controllers/vm_controller.rb
+++ b/src/app/controllers/vm_controller.rb
@@ -193,7...
2014 Mar 15
4
[supermin 1/2] chroot: Fix corner case introduced with dpkg-divert support
---
src/chroot.ml | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/src/chroot.ml b/src/chroot.ml
index b5c1e53..9e522d9 100644
--- a/src/chroot.ml
+++ b/src/chroot.ml
@@ -26,7 +26,9 @@ let build_chroot debug files outputdir =
List.iter (
fun file ->
try
- let path = file.ft_source_path in
+ let path = if file_exists file.ft_source_path
+
2014 Mar 05
3
[PATCH 0/2] supermin: fix with no dpkg installed
f093ba80e0918484838dba46a747ffaecf983fb3 caused a regression (startup
failure) when dpkg is not installed.
Simple fix with simple test for it.
Pino Toscano (2):
dpkg: do not always run dpkg_primary_arch
tests: add a basic run test
src/dpkg.ml | 4 ++--
tests/Makefile.am | 3 ++-
tests/test-basic.sh | 28 ++++++++++++++++++++++++++++
3 files changed, 32 insertions(+), 3
2009 Jun 30
0
[PATCH server] permit many-to-many vms / networks relationship
...ublic/stylesheets/components.css | 39 +++++
src/task-omatic/task_vm.rb | 14 +-
src/task-omatic/taskomatic.rb | 43 +++---
src/test/fixtures/nics.yml | 16 +-
src/test/fixtures/vms.yml | 8 -
src/test/unit/network_test.rb | 69 ++++++++-
src/test/unit/nic_test.rb | 95 +++++++++++-
src/test/unit/vm_test.rb | 14 +-
28 files changed, 710 insertions(+), 130 deletions(-)
create mode 100644 src/db/migrate/040_associate_vms_with_nics.rb
diff --git a/src/...
2021 Jan 07
1
HCI Cluster - CentOS8 to Streams Upgrade Broken
...line 91, in start_monitor#012 ).format(t=type, o=options,
e=e)#012ovirt_hosted_engine_ha.lib.exceptions.RequestError: brokerlink -
failed to start monitor via ovirt-ha-broker: [Errno 2] No such file or
directory, [monitor: 'network', options: {'addr': '172.16.100.1',
'network_test': 'dns', 'tcp_t_address': '', 'tcp_t_port': ''}]
Jan 7 09:48:06 thor journal[2375091]: ovirt-ha-agent
ovirt_hosted_engine_ha.agent.agent.Agent ERROR Trying to restart agent
Jan 7 09:48:06 thor systemd[1]: ovirt-ha-agent.service: Main process
exited, cod...
2020 Apr 03
0
[supermin PATCH v2 4/4] build: check for outputs in --if-newer check (RHBZ#1813809)
...it 0
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 42d1b82..070f6d9 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -28,7 +28,8 @@ TESTS = \
test-execstack.sh \
test-build-bash.sh \
test-binaries-exist.sh \
- test-harder.sh
+ test-harder.sh \
+ test-if-newer-ext2.sh
if NETWORK_TESTS
TESTS += \
diff --git a/tests/test-if-newer-ext2.sh b/tests/test-if-newer-ext2.sh
new file mode 100755
index 0000000..4f49bda
--- /dev/null
+++ b/tests/test-if-newer-ext2.sh
@@ -0,0 +1,57 @@
+#!/bin/bash -
+# supermin
+# (C) Copyright 2009-2020 Red Hat Inc.
+#
+# This program is free software; yo...
2020 Apr 03
5
[supermin PATCH v2 0/4] Check for output results for --if-newer (RHBZ#1813809)
This is an attempt to make supermin check for the existing results of an
output when checking whether the appliance must be rebuilt using
--if-newer.
At the moment it is implemented only for the ext2 output format of the
build mode.
Changes from v1:
- drop empty stub for the prepare mode
- add patch to ignore --if-newer on modes different than build
- squash patch with stub for the build mode
2020 Apr 03
5
[supermin PATCH 0/4] Check for output results for --if-newer (RHBZ#1813809)
This is an attempt to make supermin check for the existing results of an
output when checking whether the appliance must be rebuilt using
--if-newer.
At the moment it is implemented only for the build mode, and for its
ext2 output format.
Pino Toscano (4):
build: factor ext2 filenames
Tighten Unix_error check for missing outputdir
Extend modes with list of outputs
build: set
2014 Feb 25
2
[PATCH supermin v4] Supermin 5 rewrite.
...LES([EXT2FS], [ext2fs])
PKG_CHECK_MODULES([COM_ERR], [com_err])
-dnl Optional ext2fs_close2 function.
+dnl Requires ext2fs_close2 function, added in 2011.
old_LIBS="$LIBS"
LIBS="$EXT2FS_LIBS $COM_ERR_LIBS"
AC_CHECK_FUNCS([ext2fs_close2])
@@ -235,8 +228,6 @@ AM_CONDITIONAL([NETWORK_TESTS],
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_FILES([Makefile
examples/Makefile
- helper/Makefile
- lib/Makefile
src/config.ml
src/Makefile
tests/Makefile])
diff --git a/examples/README b/examples/README
new file mode 100644
index 0000000..5e15825
--...