Javier Jardón pushed to branch jjardon/use_freedesktop-sdk_18_08 at BuildStream / buildstream
Commits:
-
c872085d
by Javier Jardón at 2018-10-17T16:25:10Z
2 changed files:
Changes:
... | ... | @@ -4,6 +4,9 @@ description: Autotools project |
4 | 4 |
depends:
|
5 | 5 |
- base.bst
|
6 | 6 |
|
7 |
+variables:
|
|
8 |
+ prefix: '/app'
|
|
9 |
+ |
|
7 | 10 |
sources:
|
8 | 11 |
- kind: local
|
9 | 12 |
path: files/src
|
... | ... | @@ -64,6 +64,6 @@ def test_autotools_run(cli, tmpdir, datafiles): |
64 | 64 |
result = cli.run(project=project, args=['build', 'hello.bst'])
|
65 | 65 |
assert result.exit_code == 0
|
66 | 66 |
|
67 |
- result = cli.run(project=project, args=['shell', 'hello.bst', '/usr/bin/hello'])
|
|
67 |
+ result = cli.run(project=project, args=['shell', 'hello.bst', '/app/bin/hello'])
|
|
68 | 68 |
assert result.exit_code == 0
|
69 | 69 |
assert result.output == 'Hello World!\nThis is amhello 1.0.\n'
|