Commit 3d5cb514 authored by Jérome Perrin's avatar Jérome Perrin

Fix tests

parent 1d4bffbc
Pipeline #9080 passed with stage
in 0 seconds
...@@ -935,7 +935,6 @@ is not used. ...@@ -935,7 +935,6 @@ is not used.
>>> print(system(buildout)) #doctest:+ELLIPSIS >>> print(system(buildout)) #doctest:+ELLIPSIS
Uninstalling package. Uninstalling package.
Uninstalling package-2.
Installing package. Installing package.
configure --prefix=/sample_buildout/parts/package configure --prefix=/sample_buildout/parts/package
building package building package
...@@ -973,7 +972,7 @@ developer can try same build process as the recipe tried. ...@@ -973,7 +972,7 @@ developer can try same build process as the recipe tried.
... FOO=bar ... FOO=bar
... """ % (shared_dir, src)) ... """ % (shared_dir, src))
>>> print(system(buildout)) #doctest:+ELLIPSIS >>> print(system(buildout)) #doctest:+ELLIPSIS
package: shared directory /shared/package/FIRST_SHARED_PACKAGE_HASH set for package package: shared at /shared/package/FIRST_SHARED_PACKAGE_HASH
Uninstalling package. Uninstalling package.
Installing package. Installing package.
package: Checking whether package is installed at shared path: /shared/package/FIRST_SHARED_PACKAGE_HASH package: Checking whether package is installed at shared path: /shared/package/FIRST_SHARED_PACKAGE_HASH
...@@ -993,7 +992,7 @@ developer can try same build process as the recipe tried. ...@@ -993,7 +992,7 @@ developer can try same build process as the recipe tried.
Next time buildout runs, it detects that the build failed, remove the compile dir and retry. Next time buildout runs, it detects that the build failed, remove the compile dir and retry.
>>> print(system(buildout)) #doctest:+ELLIPSIS >>> print(system(buildout)) #doctest:+ELLIPSIS
package: shared directory /shared/package/FIRST_SHARED_PACKAGE_HASH set for package package: shared at /shared/package/FIRST_SHARED_PACKAGE_HASH
Installing package. Installing package.
package: Checking whether package is installed at shared path: /shared/package/FIRST_SHARED_PACKAGE_HASH package: Checking whether package is installed at shared path: /shared/package/FIRST_SHARED_PACKAGE_HASH
package: [ENV] FOO = bar package: [ENV] FOO = bar
...@@ -1051,7 +1050,7 @@ not detected and the part was considered as installed. ...@@ -1051,7 +1050,7 @@ not detected and the part was considered as installed.
>>> _ = system('mv %s/package-0.0.0.tar.gz.bak %s/package-0.0.0.tar.gz' % (src, src)) >>> _ = system('mv %s/package-0.0.0.tar.gz.bak %s/package-0.0.0.tar.gz' % (src, src))
>>> print(system(buildout)) #doctest:+ELLIPSIS >>> print(system(buildout)) #doctest:+ELLIPSIS
package: shared directory /shared/package/FIRST_SHARED_PACKAGE_HASH set for package package: shared at /shared/package/FIRST_SHARED_PACKAGE_HASH
Installing package. Installing package.
package: Checking whether package is installed at shared path: /shared/package/FIRST_SHARED_PACKAGE_HASH package: Checking whether package is installed at shared path: /shared/package/FIRST_SHARED_PACKAGE_HASH
package: [ENV] FOO = bar package: [ENV] FOO = bar
...@@ -1093,7 +1092,7 @@ used instead of installing if one package has been installed. ...@@ -1093,7 +1092,7 @@ used instead of installing if one package has been installed.
... FOO=bar ... FOO=bar
... """ % (shared_dir, another_shared_dir, src)) ... """ % (shared_dir, another_shared_dir, src))
>>> print(system(buildout)) #doctest:+ELLIPSIS >>> print(system(buildout)) #doctest:+ELLIPSIS
package: shared directory /shared/package/FIRST_SHARED_PACKAGE_HASH set for package package: shared at /shared/package/FIRST_SHARED_PACKAGE_HASH
Installing package. Installing package.
package: Checking whether package is installed at shared path: /shared/package/FIRST_SHARED_PACKAGE_HASH package: Checking whether package is installed at shared path: /shared/package/FIRST_SHARED_PACKAGE_HASH
package: This shared package has been installed by other package package: This shared package has been installed by other package
...@@ -1114,7 +1113,7 @@ If options change, reinstall in different location: ...@@ -1114,7 +1113,7 @@ If options change, reinstall in different location:
... """ % (shared_dir, src)) ... """ % (shared_dir, src))
>>> print(system(buildout)) #doctest:+ELLIPSIS >>> print(system(buildout)) #doctest:+ELLIPSIS
package: shared directory /shared/package/ANOTHER_SHARED_PACKAGE_HASH set for package package: shared at /shared/package/ANOTHER_SHARED_PACKAGE_HASH
Uninstalling package. Uninstalling package.
Installing package. Installing package.
package: Checking whether package is installed at shared path: /shared/package/ANOTHER_SHARED_PACKAGE_HASH package: Checking whether package is installed at shared path: /shared/package/ANOTHER_SHARED_PACKAGE_HASH
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment