~jamesodhunt/click/add-utf8-test

« back to all changes in this revision

Viewing changes to tests/integration/test_build_core_apps.py

  • Committer: CI bot
  • Author(s): Michael Vogt, Colin Watson
  • Date: 2014-08-06 23:33:12 UTC
  • mfrom: (425.1.67 devel)
  • Revision ID: ps-jenkins@lists.canonical.com-20140806233312-4nc48i27d6zn4i9j
Click 0.4.30: Unit test improvements; fix upgrade if packages are present for removed users; flesh out 14.10 chroots. Fixes: 1334611

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
]
37
37
 
38
38
# command to "configure"
39
 
CORE_APP_CONFIGURE_CMD  = [
 
39
CORE_APP_CONFIGURE_CMD = [
40
40
    "cmake", "..", "-DCLICK_MODE=on", "-DINSTALL_TESTS=off"]
41
41
 
42
42
# command to make install
103
103
            branch_dir = branch[len("lp:"):]
104
104
            build_dir = os.path.join(branch_dir, "build-tree")
105
105
            if os.path.exists(branch_dir):
106
 
                subprocess.check_call(["bzr","pull"], cwd=branch_dir)
 
106
                subprocess.check_call(["bzr", "pull"], cwd=branch_dir)
107
107
            else:
108
 
                subprocess.check_call(["bzr","branch", branch])
 
108
                subprocess.check_call(["bzr", "branch", branch])
109
109
            manifest = find_manifest(branch_dir)
110
110
            # build it
111
111
            self._set_arch_and_framework_from_manifest(manifest)
117
117
                self.configure()
118
118
                self.make()
119
119
                self.create_click()
120
 
                
121
 
 
122