Browse Source

Remove messages when running STIG

Bob Mottram 9 years ago
parent
commit
b0ed59de5f
1 changed files with 6 additions and 2 deletions
  1. 6
    2
      src/freedombone-tests

+ 6
- 2
src/freedombone-tests View File

1128
     shift
1128
     shift
1129
 done
1129
 done
1130
 
1130
 
1131
-echo $'Running tests'
1131
+if [ ! $RUN_STIG ]; then
1132
+    echo $'Running tests'
1133
+fi
1132
 
1134
 
1133
 test_app_functions
1135
 test_app_functions
1134
 test_unique_onion_ports
1136
 test_unique_onion_ports
1135
 test_stig
1137
 test_stig
1136
 
1138
 
1137
-echo $'All tests passed'
1139
+if [ ! $RUN_STIG ]; then
1140
+    echo $'All tests passed'
1141
+fi
1138
 
1142
 
1139
 exit 0
1143
 exit 0