X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/becf2ff78c488808dcb55883271ca759ac0ca492..b4e100c635317aa78edddfe6ae8f8c0feb69b2a4:/tools/sg_unit_extractor.pl diff --git a/tools/sg_unit_extractor.pl b/tools/sg_unit_extractor.pl index 41ab6cb84d..6502ccfa73 100755 --- a/tools/sg_unit_extractor.pl +++ b/tools/sg_unit_extractor.pl @@ -1,4 +1,10 @@ -#! /usr/bin/perl +#! /usr/bin/env perl + +# Copyright (c) 2005-2012, 2014. The SimGrid Team. +# All rights reserved. + +# This program is free software; you can redistribute it and/or modify it +# under the terms of the license (GNU LGPL) which comes with this package. use strict; @@ -38,6 +44,7 @@ sub process_one($) { $outfile = $infile; $outfile =~ s/\.c$/_unit.c/; + $outfile =~ s/\.cpp$/_unit.cpp/; $outfile =~ s|.*/([^/]*)$|$1| if $outfile =~ m|/|; $outfile = "$outdir$outfile"; @@ -120,7 +127,6 @@ sub process_one($) { open OUT,">${outdir}simgrid_units_main.c" || die "$progname: Cannot open main file '${outdir}simgrid_units_main.c': $!\n"; print OUT $GENERATED; print OUT "#include \n\n"; - print OUT "#include \"msg/msg.h\" /* MSG_init, xbt_init is not enough when using synchronized dynars */\n"; print OUT "#include \"xbt.h\"\n\n"; print OUT "extern xbt_test_unit_t _xbt_current_unit;\n\n"; print OUT "/* SGU: BEGIN PROTOTYPES */\n"; @@ -138,7 +144,7 @@ int main(int argc, char *argv[]) { /* SGU: BEGIN SUITES DECLARATION */ /* SGU: END SUITES DECLARATION */ - MSG_init(&argc,argv); + xbt_init(&argc,argv); /* Search for the tests to do */ selection[0]='\\0';