Merge lp:~sergiusens/click/load-module into lp:click

Proposed by Svein Åge Lima
Status: Needs review
Proposed branch: lp:~sergiusens/click/load-module
Merge into: lp:click
Diff against target: 34 lines (+4/-1)
3 files modified
click_package/tests/integration/test_build_core_apps.py (+2/-0)
click_package/tests/integration/test_chroot.py (+1/-0)
debian/tests/run-tests.sh (+1/-1)
To merge this branch: bzr merge lp:~sergiusens/click/load-module
Reviewer Review Type Date Requested Status
Colin Watson Needs Fixing
Review via email: mp+334501@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Colin Watson (cjwatson) :
review: Needs Fixing

Unmerged revisions

628. By Sergio Schvezov

load the overlay module before chroot creation for integration tests

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'click_package/tests/integration/test_build_core_apps.py'
--- click_package/tests/integration/test_build_core_apps.py 2017-06-07 18:49:42 +0000
+++ click_package/tests/integration/test_build_core_apps.py 2017-11-30 03:11:52 +0000
@@ -94,6 +94,8 @@
9494
95 def _ensure_click_chroot(self):95 def _ensure_click_chroot(self):
96 if subprocess.call(self.chroot_cmd + ["exists"]) != 0:96 if subprocess.call(self.chroot_cmd + ["exists"]) != 0:
97 # In case the testbed doesn't have the module loaded.
98 subprocess.check_call(["/sbin/modprobe", "overlay"])
97 subprocess.check_call(self.chroot_cmd + ["create"])99 subprocess.check_call(self.chroot_cmd + ["create"])
98100
99 def configure(self):101 def configure(self):
100102
=== modified file 'click_package/tests/integration/test_chroot.py'
--- click_package/tests/integration/test_chroot.py 2017-06-07 18:49:42 +0000
+++ click_package/tests/integration/test_chroot.py 2017-11-30 03:11:52 +0000
@@ -54,6 +54,7 @@
54 require_overlay()54 require_overlay()
55 cls.arch = subprocess.check_output(55 cls.arch = subprocess.check_output(
56 ["dpkg", "--print-architecture"], universal_newlines=True).strip()56 ["dpkg", "--print-architecture"], universal_newlines=True).strip()
57 subprocess.check_call(["/sbin/modprobe", "overlay"])
57 subprocess.check_call(cls.command(cls.arch, "create"))58 subprocess.check_call(cls.command(cls.arch, "create"))
5859
59 @classmethod60 @classmethod
6061
=== modified file 'debian/tests/run-tests.sh'
--- debian/tests/run-tests.sh 2017-06-06 21:04:01 +0000
+++ debian/tests/run-tests.sh 2017-11-30 03:11:52 +0000
@@ -10,4 +10,4 @@
10 --with-systemduserunitdir=/usr/lib/systemd/user \10 --with-systemduserunitdir=/usr/lib/systemd/user \
11 --disable-packagekit11 --disable-packagekit
1212
13TEST_INTEGRATION=1 python3 -m unittest discover -vv click_package.tests.integration13TEST_INTEGRATION=1 python3 -m unittest run -vv click_package.tests.integration.test_chroot.TestChroot

Subscribers

People subscribed via source and target branches

to all changes: