aboutsummaryrefslogtreecommitdiffstats
path: root/test/features
diff options
context:
space:
mode:
authorLibravatar a1346054 <36859588+a1346054@users.noreply.github.com>2022-09-13 20:01:07 +0000
committerLibravatar a1346054 <36859588+a1346054@users.noreply.github.com>2022-09-13 22:37:20 +0000
commit270f0d95e3f27445057981b26a2aa6474769f3f2 (patch)
treea0dd67c7c9205d6987a706ffaa0141df91948ca7 /test/features
parenttests: add missing final newline (diff)
downloadfirejail-270f0d95e3f27445057981b26a2aa6474769f3f2.tar.gz
firejail-270f0d95e3f27445057981b26a2aa6474769f3f2.tar.zst
firejail-270f0d95e3f27445057981b26a2aa6474769f3f2.zip
tests: stop mixing tabs and spaces
Diffstat (limited to 'test/features')
-rwxr-xr-xtest/features/test.sh35
1 files changed, 16 insertions, 19 deletions
diff --git a/test/features/test.sh b/test/features/test.sh
index 64cb78c21..aaf5fd089 100755
--- a/test/features/test.sh
+++ b/test/features/test.sh
@@ -9,27 +9,24 @@ CHROOT="chroot"
9NETWORK="network" 9NETWORK="network"
10 10
11while [ $# -gt 0 ]; do # Until you run out of parameters . . . 11while [ $# -gt 0 ]; do # Until you run out of parameters . . .
12 case "$1" in 12 case "$1" in
13 --nooverlay) 13 --nooverlay)
14 OVERLAY="none" 14 OVERLAY="none"
15 ;; 15 ;;
16 --nochroot) 16 --nochroot)
17 CHROOT="none" 17 CHROOT="none"
18 ;; 18 ;;
19 --nonetwork) 19 --nonetwork)
20 NETWORK="none" 20 NETWORK="none"
21 ;; 21 ;;
22 --help) 22 --help)
23 echo "./test.sh [--nooverlay|--nochroot|--nonetwork|--help] | grep TESTING" 23 echo "./test.sh [--nooverlay|--nochroot|--nonetwork|--help] | grep TESTING"
24 exit 24 exit
25 ;; 25 ;;
26 esac 26 esac
27 shift # Check next set of parameters. 27 shift # Check next set of parameters.
28done 28done
29 29
30
31
32
33# 30#
34# Feature testing 31# Feature testing
35# 32#