File: task.yaml

package info (click to toggle)
snapd 2.72-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 80,412 kB
  • sloc: sh: 16,506; ansic: 16,211; python: 11,213; makefile: 1,919; exp: 190; awk: 58; xml: 22
file content (18 lines) | stat: -rw-r--r-- 505 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
summary: Test that we use the right buildmode per arch

details: |
    Verify the build mode is the correct one in amd64 architecture

systems: [ubuntu-1*, ubuntu-2*]

execute: |
    # `objdump -f` will report "DYNAMIC" for binaries build with
    # -buildmode=pie
    needle="DYNAMIC"
    
    # check /usr/bin/snap
    objdump -f /usr/bin/snap | MATCH "$needle"
    # and the helpers in /usr/lib/snapd
    for p in snapd snap-repair; do
        objdump -f /usr/lib/snapd/"$p" | MATCH "$needle"
    done