aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README2
-rwxr-xr-xtest/test-profiles.sh10
-rwxr-xr-xtest/test.sh8
3 files changed, 13 insertions, 7 deletions
diff --git a/README b/README
index 6b0f396a3..b32cbe30a 100644
--- a/README
+++ b/README
@@ -18,6 +18,8 @@ License: GPL v2
18Firejail Authors: 18Firejail Authors:
19 19
20netblue30 (netblue30@yahoo.com) 20netblue30 (netblue30@yahoo.com)
21Rahiel Kasim (https://github.com/rahiel)
22 - whitelist keysnail config for firefox
21Peter Hogg (https://github.com/pigmonkey) 23Peter Hogg (https://github.com/pigmonkey)
22 - WeeChat profile 24 - WeeChat profile
23 - rtorrent profile 25 - rtorrent profile
diff --git a/test/test-profiles.sh b/test/test-profiles.sh
new file mode 100755
index 000000000..d9142885b
--- /dev/null
+++ b/test/test-profiles.sh
@@ -0,0 +1,10 @@
1#!/bin/bash
2
3echo "TESTING: default profiles installed in /etc"
4PROFILES=`ls /etc/firejail/*.profile`
5for PROFILE in $PROFILES
6do
7 echo "TESTING: $PROFILE"
8 ./test-profile.exp $PROFILE
9done
10
diff --git a/test/test.sh b/test/test.sh
index 8668d068f..86ae874d9 100755
--- a/test/test.sh
+++ b/test/test.sh
@@ -2,13 +2,7 @@
2 2
3./chk_config.exp 3./chk_config.exp
4 4
5echo "TESTING: default profiles installed in /etc" 5./test-profiles.sh
6PROFILES=`ls /etc/firejail/*.profile`
7for PROFILE in $PROFILES
8do
9 echo "TESTING: $PROFILE"
10 ./test-profile.exp $PROFILE
11done
12 6
13./fscheck.sh 7./fscheck.sh
14 8