forked from conan-io/examples2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun_example.py
28 lines (20 loc) · 1.03 KB
/
run_example.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from test.examples_tools import run
# ############# Example ################
print("- Patch the sources with different methods -")
print("Patching with replace_in_file in the source() method")
output = run("conan create .")
assert "hello/1.0: Hello Friends! Release!" in output
print("Patching with replace_in_file in the build() method")
output = run("conan create conanfile_replace_build.py")
assert "hello/1.0: Hello Static Friends!" in output
output = run("conan create conanfile_replace_build.py -o shared=True")
assert "hello/1.0: Hello Shared Friends!" in output
print("Patching with patch tool")
output = run("conan create conanfile_patch.py")
assert "hello/1.0: Hello Patched World Release!" in output
print("Patching with patch tool and conandata")
output = run("conan create conanfile_patch_conandata.py")
assert "hello/1.0: Hello Patched World Release!" in output
print("Patching with apply_conandata_patches tool")
output = run("conan create conanfile_apply_conandata.py")
assert "hello/1.0: Hello Patched World Release!" in output