소스 검색

Fix static analysis failures

Bob Mottram 7 년 전
부모
커밋
3f4c390a5d
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2
    2
      src/freedombone-tests

+ 2
- 2
src/freedombone-tests 파일 보기

123
         # for each expected interface function
123
         # for each expected interface function
124
         for f in "${interface_functions[@]}"
124
         for f in "${interface_functions[@]}"
125
         do
125
         do
126
-            test_app_function_type ${filename} "$f"
126
+            test_app_function_type "${filename}" "$f"
127
         done
127
         done
128
     done
128
     done
129
 }
129
 }
1305
 fix_stig
1305
 fix_stig
1306
 test_stig
1306
 test_stig
1307
 
1307
 
1308
-if [ ! $RUN_STIG ]; then
1308
+if [ ! "$RUN_STIG" ]; then
1309
     echo $'All tests passed'
1309
     echo $'All tests passed'
1310
 fi
1310
 fi
1311
 
1311