aboutsummaryrefslogtreecommitdiffstats
path: root/test/utils/utils.sh
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2016-04-23 08:53:07 -0400
committerLibravatar netblue30 <netblue30@yahoo.com>2016-04-23 08:53:07 -0400
commit2905b9f9ab5c5ed6f9210d1d843a8bcf41451854 (patch)
treed3bb968dbcb9f22856de345d0df5ecf2a44d594f /test/utils/utils.sh
parentquiterss profile (diff)
downloadfirejail-2905b9f9ab5c5ed6f9210d1d843a8bcf41451854.tar.gz
firejail-2905b9f9ab5c5ed6f9210d1d843a8bcf41451854.tar.zst
firejail-2905b9f9ab5c5ed6f9210d1d843a8bcf41451854.zip
make test-utils
Diffstat (limited to 'test/utils/utils.sh')
-rwxr-xr-xtest/utils/utils.sh42
1 files changed, 42 insertions, 0 deletions
diff --git a/test/utils/utils.sh b/test/utils/utils.sh
new file mode 100755
index 000000000..02aaa57c0
--- /dev/null
+++ b/test/utils/utils.sh
@@ -0,0 +1,42 @@
1#!/bin/bash
2# This file is part of Firejail project
3# Copyright (C) 2014-2016 Firejail Authors
4# License GPL v2
5
6export MALLOC_CHECK_=3
7export MALLOC_PERTURB_=$(($RANDOM % 255 + 1))
8
9echo "TESTING: version (test/utils/version.exp)"
10./version.exp
11
12echo "TESTING: help (test/utils/help.exp)"
13./help.exp
14
15echo "TESTING: man (test/utils/man.exp)"
16./man.exp
17
18echo "TESTING: list (test/utils/list.exp)"
19./list.exp
20
21echo "TESTING: tree (test/utils/tree.exp)"
22./tree.exp
23
24echo "TESTING: cpu.print (test/utils/cpu-print.exp)"
25echo "TESTING: failing under VirtualBox where there is only one CPU"
26./cpu-print.exp
27
28echo "TESTING: fs.print (test/utils/fs-print.exp)"
29./fs-print.exp
30
31echo "TESTING: dns.print (test/utils/dns-print.exp)"
32./dns-print.exp
33
34echo "TESTING: caps.print (test/utils/caps-print.exp)"
35./caps-print.exp
36
37echo "TESTING: seccomp.print (test/utils/seccomp-print.exp)"
38./seccomp-print.exp
39
40echo "TESTING: protocol.print (test/utils/protocol-print.exp)"
41./protocol-print.exp
42