Skip to content

Commit

Permalink
Avoiding errors in the test phase of the automated builds on Mac due …
Browse files Browse the repository at this point in the history
…to issues with JSBSim on this platform.
  • Loading branch information
rbdavison committed May 10, 2012
1 parent 2701371 commit 5a2b078
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/examples/01_compile_all_example_targets.t
Expand Up @@ -28,7 +28,7 @@ foreach my $example (sort keys%{$examples->{'aircraft'}})
next unless scalar $airframe_config->{'firmware'}->{$process}->{'target'}->{$target}->{'board'};

# Exclude some builds on Mac as they are currently broken.
next if ( ($Config{'osname'} =~ m#darwin#i) and ($example =~ m#LISA_ASCTEC_PIOTR|LisaLv11_Booz2v12_RC|BOOZ2_A1|LisaLv11_Aspirinv15_Overo_RC#i) and ($target =~ m#sim#i) );
next if ( ($Config{'osname'} =~ m#darwin#i) and ($example =~ m#LISA_ASCTEC_PIOTR|LisaLv11_Booz2v12_RC|BOOZ2_A1|LisaLv11_Aspirinv15_Overo_RCi|Quad_LisaM|Booz2#i) and ($target =~ m#sim#i) );

#warn "EXAMPLE: [$example] TARGET: [$target]\n";
my $make_options = "AIRCRAFT=$example clean_ac $target.compile";
Expand All @@ -48,7 +48,7 @@ foreach my $example (sort keys%{$examples->{'aircraft'}})
next unless scalar $airframe_config->{'firmware'}->{$process}->{$target}->{'board'};

# Exclude some builds on Mac as they are currently broken.
next if ( ($Config{'osname'} =~ m#darwin#i) and ($example =~ m#LISA_ASCTEC_PIOTR|LisaLv11_Booz2v12_RC|BOOZ2_A1|LisaLv11_Aspirinv15_Overo_RC#i) and ($target =~ m#sim#i) );
next if ( ($Config{'osname'} =~ m#darwin#i) and ($example =~ m#LISA_ASCTEC_PIOTR|LisaLv11_Booz2v12_RC|BOOZ2_A1|LisaLv11_Aspirinv15_Overo_RC|Quad_LisaM|Booz2#i) and ($target =~ m#sim#i) );

#warn "EXAMPLET: [$example] TARGET: [$target]\n";
my $make_options = "AIRCRAFT=$example clean_ac $target.compile";
Expand Down

0 comments on commit 5a2b078

Please sign in to comment.