mirror of
https://github.com/netblue30/firejail.git
synced 2026-05-15 14:16:14 -06:00
28 lines
687 B
Bash
Executable file
28 lines
687 B
Bash
Executable file
#!/bin/bash
|
|
# This file is part of Firejail project
|
|
# Copyright (C) 2014-2026 Firejail Authors
|
|
# License GPL v2
|
|
|
|
export MALLOC_CHECK_=3
|
|
export MALLOC_PERTURB_=$(($RANDOM % 255 + 1))
|
|
export LC_ALL=C
|
|
|
|
|
|
#if grep -q "^CapBnd:\\s0000003fffffffff" /proc/self/status; then
|
|
echo "TESTING: capabilities (test/filters/caps.exp)"
|
|
./caps.exp
|
|
#else
|
|
# echo "TESTING SKIP: other capabilities than expected (test/filters/caps.exp)"
|
|
#fi
|
|
|
|
echo "TESTING: capabilities print (test/filters/caps-print.exp)"
|
|
./caps-print.exp
|
|
|
|
echo "TESTING: capabilities join (test/filters/caps-join.exp)"
|
|
./caps-join.exp
|
|
|
|
echo "TESTING: firemon caps (test/utils/firemon-caps.exp)"
|
|
./firemon-caps.exp
|
|
|
|
cd ../../
|
|
./mkgcov.sh
|