File: build

package info (click to toggle)
checksec 2.6.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 10,936 kB
  • sloc: sh: 1,882; makefile: 2
file content (8 lines) | stat: -rw-r--r-- 247 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
#!/bin/sh

set -e
echo "test start"
checksec --output=csv --file=/bin/ls || echo "test fail" || exit
checksec --output=xml --file=/bin/ls || echo "test fail" || exit
checksec --output=json --file=/bin/ls || echo "test fail" || exit
echo "test OK"