aboutsummaryrefslogtreecommitdiffstats
path: root/test/features/test.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test/features/test.sh')
-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#