Corrected a regex and added a couple of ignore items

This commit is contained in:
Bernard Davison
2012-03-05 12:48:16 +11:00
parent 49dcc05093
commit 0c1bc178a4
2 changed files with 5 additions and 1 deletions
+4
View File
@@ -169,3 +169,7 @@
# Mac OS X # Mac OS X
.DS_Store .DS_Store
sw/ground_segment/lpc21iap/lpc21iap.dSYM/Contents/Info.plist
sw/ground_segment/lpc21iap/lpc21iap.dSYM/Contents/Resources/DWARF/lpc21iap
+1 -1
View File
@@ -14,7 +14,7 @@ my $compile_output = run_program(
$ENV{'PAPARAZZI_SRC'}, $ENV{'PAPARAZZI_SRC'},
"make $make_compile_options", "make $make_compile_options",
0,1); 0,1);
unlike($compile_output, '/Aircraft \'LisaLv11_Booz2v12_RC\' not found in', "The compile output does not contain the message \"Aircraft \'LisaLv11_Booz2v12_RC\' not found in\""); unlike($compile_output, '/Aircraft \'LisaLv11_Booz2v12_RC\' not found in/', "The compile output does not contain the message \"Aircraft \'LisaLv11_Booz2v12_RC\' not found in\"");
unlike($compile_output, '/Error/i', "The compile output does not contain the word \"Error\""); unlike($compile_output, '/Error/i', "The compile output does not contain the word \"Error\"");
#################### ####################