From: Christophe ThiƩry Date: Fri, 22 Apr 2011 14:13:14 +0000 (+0200) Subject: Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot//simgrid/simgrid X-Git-Tag: v3_6_rc3~107 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/58b8f451a5354b82983ed68155c16496a9bca822?hp=6443d4868c5974225d792156daf319775234b087 Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot//simgrid/simgrid --- diff --git a/buildtools/Cmake/Flags.cmake b/buildtools/Cmake/Flags.cmake index 6d0cc5641b..e6e97fdb39 100644 --- a/buildtools/Cmake/Flags.cmake +++ b/buildtools/Cmake/Flags.cmake @@ -24,6 +24,10 @@ set(CMAKE_C_FLAGS "${optCFLAGS}${warnCFLAGS}${CMAKE_C_FLAGS}") set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${custom_flags}") +if(WIN32) + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -march=i486") +endif(WIN32) + if(enable_coverage) find_program(GCOV_PATH gcov) if(GCOV_PATH) diff --git a/buildtools/Cmake/tesh.pl b/buildtools/Cmake/tesh.pl index c662f1362e..907995d530 100755 --- a/buildtools/Cmake/tesh.pl +++ b/buildtools/Cmake/tesh.pl @@ -121,39 +121,37 @@ my($tesh_command)=0; my(@buffer_tesh)=(); # parse tesh file -open SH_LIGNE, $tesh_file or die "[Tesh/CRITICAL] Unable to open $tesh_file $!\n"; +open TESH_FILE, $tesh_file or die "[Tesh/CRITICAL] Unable to open $tesh_file $!\n"; -while (defined(my $line1=)) { +my %cmd; # everything about the next command to run +while (defined(my $line1=)) { + chomp $line1; if($line1 =~ /^\< \$ /){ # arg command line $line1 =~ s/\${EXEEXT:=}//g; $line1 =~ s/^\< \$\ *//g; - $line1 =~ s/^.\/lua/lua/g; - $line1 =~ s/^.\/ruby/ruby/g; - $line1 =~ s/^.\///g; - $line1 =~ s/^tesh/.\/tesh/g; + $line1 =~ s|^./lua|lua|g; + $line1 =~ s|^./ruby|ruby|g; + $line1 =~ s|^./||g; + $line1 =~ s|^tesh|./tesh|g; $line1 =~ s/\(%i:%P@%h\)/\\\(%i:%P@%h\\\)/g; - chomp $line1; $command_tesh = $line1; print "[Tesh/INFO] arg_exec_line : $command_tesh\n"; } elsif($line1 =~ /^\< \< /){ # arg buffer line $line1 =~ s/^\< \<\ *//g; - chomp $line1; print "[Tesh/INFO] arg_buffer_line : $line1\n"; push @buffer_tesh, "$line1\n"; } elsif($line1 =~ /^\< \> /){ # arg output line $line1 =~ s/^\< \>\ *//g; $line1 =~ s/\r//g; - chomp $line1; - push @list2, $line1; + push @list2, $line1; print "[Tesh/INFO] arg_output_line : $line1\n"; $expected_result_line = 1; } elsif($line1 =~ /^\$ mkfile/){ # "mkfile" command line $line1 =~ s/\$ //g; $line1 =~ s/mkfile//g; - chomp $line1; $fich_name = $line1; $line1 =(); print "[Tesh/INFO] exec_line : mkfile $fich_name\n"; @@ -165,25 +163,23 @@ while (defined(my $line1=)) { } elsif($line1 =~ /^\$ cd/){ # "cd" command line $line1 =~ s/\$ //g; - chomp $line1; print "[Tesh/INFO] exec_line : $line1\n"; $line1 =~ s/cd //g; chdir("$line1") or die "[Tesh/CRITICAL] Unable to open $line1. $!\n"; } elsif($line1 =~ /^\$ /){ #command line - if($line1 =~ /^\$ .\/tesh/){ # tesh command line + if($line1 =~ m|^\$ ./tesh|){ # tesh command line $tesh_command = 1; @buffer = @buffer_tesh; @buffer_tesh=(); } $line1 =~ s/\${EXEEXT:=}//g; $line1 =~ s/^\$\ *//g; - $line1 =~ s/^.\/lua/lua/g; - $line1 =~ s/^.\/ruby/ruby/g; - $line1 =~ s/^.\///g; - $line1 =~ s/^tesh/.\/tesh/g; + $line1 =~ s|^./lua|lua|g; + $line1 =~ s|^./ruby|ruby|g; + $line1 =~ s|^./||g; + $line1 =~ s|^tesh|./tesh|g; $line1 =~ s/\(%i:%P@%h\)/\\\(%i:%P@%h\\\)/g; - chomp $line1; $line1 = "$line1 $config"; if(@list1){ @@ -241,11 +237,10 @@ while (defined(my $line1=)) { $expected_result_line = 0; $line1 =~ s/\${EXEEXT:=}//g; $line1 =~ s/^\& //g; - $line1 =~ s/^.\/lua/lua/g; - $line1 =~ s/^.\/ruby/ruby/g; - $line1 =~ s/^.\///g; + $line1 =~ s|^./lua|lua|g; + $line1 =~ s|^./ruby|ruby|g; + $line1 =~ s|^./||g; $line1 =~ s/\(%i:%P@%h\)/\\\(%i:%P@%h\\\)/g; - chomp $line1; $line1 = "$line1 $config"; $execline = "$line1"; @@ -255,14 +250,12 @@ while (defined(my $line1=)) { elsif($line1 =~ /^\>/){ #expected result line $line1 =~ s/^\>( )*//g; $line1 =~ s/\r//g; - chomp $line1; push @list2, $line1; $expected_result_line = 1; } elsif($line1 =~ /^\)) { elsif($line1 =~ /^p/){ #comment $line1 =~ s/^p //g; $line1 =~ s/\r//g; - chomp $line1; print "[Tesh/INFO] comment_line :$line1\n"; } elsif($line1 =~ /^! output sort/){ #output sort @@ -296,7 +288,6 @@ while (defined(my $line1=)) { elsif($line1 =~ /^! expect return/){ #expect return $line1 =~ s/^! expect return //g; $line1 =~ s/\r//g; - chomp $line1; $return = $line1; print color("red"), "[Tesh/INFO] expect return $return"; print color("reset"), "\n"; @@ -305,7 +296,6 @@ while (defined(my $line1=)) { elsif($line1 =~ /^! setenv/){ #setenv $line1 =~ s/^! setenv //g; $line1 =~ s/\r//g; - chomp $line1; $line1 =~ /^(.*)=(.*)$/; $ENV{$1} = $2; print "[Tesh/INFO] setenv: $1=$2\n"; @@ -318,7 +308,6 @@ while (defined(my $line1=)) { elsif($line1 =~ /^! timeout/){ #timeout $line1 =~ s/^! timeout //g; $line1 =~ s/\r//g; - chomp $line1; if($timeout != $line1){ $timeout = $line1; print "[Tesh/INFO] timeout : $timeout\n";}