diff options
author | Javier Jardón <jjardon@gnome.org> | 2018-12-04 20:13:15 +0000 |
---|---|---|
committer | Javier Jardón <jjardon@gnome.org> | 2018-12-09 16:59:26 +0000 |
commit | 56c2c2cc1df78d04cb46e288db4cd75552f1c153 (patch) | |
tree | 8cbf81b89b6f6483ebdc35c98a440b0af9340ad8 /tests/examples | |
parent | 2a0676c3bf607a95a41bd802839eaf677588bf79 (diff) | |
download | buildstream-56c2c2cc1df78d04cb46e288db4cd75552f1c153.tar.gz |
buildstream/data/projectconfig.yaml: Remove default strip-binaries
They are too specific to be included by default
Recommendation is if you are building in Linux is to use the
ones begin used in the freedesktop-sdk project, for example
See #645
Diffstat (limited to 'tests/examples')
-rw-r--r-- | tests/examples/autotools.py | 4 | ||||
-rw-r--r-- | tests/examples/developing.py | 4 | ||||
-rw-r--r-- | tests/examples/flatpak-autotools.py | 4 |
3 files changed, 3 insertions, 9 deletions
diff --git a/tests/examples/autotools.py b/tests/examples/autotools.py index 8e4bf5a75..af440cc6f 100644 --- a/tests/examples/autotools.py +++ b/tests/examples/autotools.py @@ -29,9 +29,7 @@ def test_autotools_build(cli, tmpdir, datafiles): result.assert_success() assert_contains(checkout, ['/usr', '/usr/lib', '/usr/bin', - '/usr/share', '/usr/lib/debug', - '/usr/lib/debug/usr', '/usr/lib/debug/usr/bin', - '/usr/lib/debug/usr/bin/hello', + '/usr/share', '/usr/bin/hello', '/usr/share/doc', '/usr/share/doc/amhello', '/usr/share/doc/amhello/README']) diff --git a/tests/examples/developing.py b/tests/examples/developing.py index 0a51802a9..3b09962bd 100644 --- a/tests/examples/developing.py +++ b/tests/examples/developing.py @@ -30,9 +30,7 @@ def test_autotools_build(cli, tmpdir, datafiles): result.assert_success() assert_contains(checkout, ['/usr', '/usr/lib', '/usr/bin', - '/usr/share', '/usr/lib/debug', - '/usr/lib/debug/usr', '/usr/lib/debug/usr/bin', - '/usr/lib/debug/usr/bin/hello', + '/usr/share', '/usr/bin/hello']) diff --git a/tests/examples/flatpak-autotools.py b/tests/examples/flatpak-autotools.py index 73910c5eb..d63771ebf 100644 --- a/tests/examples/flatpak-autotools.py +++ b/tests/examples/flatpak-autotools.py @@ -48,9 +48,7 @@ def test_autotools_build(cli, tmpdir, datafiles): assert result.exit_code == 0 assert_contains(checkout, ['/usr', '/usr/lib', '/usr/bin', - '/usr/share', '/usr/lib/debug', - '/usr/lib/debug/usr', '/usr/lib/debug/usr/bin', - '/usr/lib/debug/usr/bin/hello', + '/usr/share', '/usr/bin/hello', '/usr/share/doc', '/usr/share/doc/amhello', '/usr/share/doc/amhello/README']) |