Index: t/pmc/sys.t
===================================================================
--- t/pmc/sys.t	(révision 9482)
+++ t/pmc/sys.t	(copie de travail)
@@ -35,7 +35,7 @@
     .local pmc conf_hash
     conf_hash = _config()
     .local string slash
-    slash = conf_hash["slash_exec"]
+    slash = conf_hash["slash"]
     .local string parrot
     parrot = conf_hash["test_prog"]
     .local string cmd
Index: config/init/data.pl
===================================================================
--- config/init/data.pl	(révision 9482)
+++ config/init/data.pl	(copie de travail)
@@ -140,10 +140,7 @@
 
     cp            => '$(PERL) -MExtUtils::Command -e cp',
     lns           => $Config{lns},        # soft link
-    # On all platform slash == slash_exec, except with MinGW
-    # slash_exec is needed by pathname of executable in test or makefile
     slash         => '/',
-    slash_exec    => '/',
 
     VERSION       => $main::parrot_version,
     MAJOR         => $main::parrot_version[0],
Index: config/init/hints/msys.pl
===================================================================
--- config/init/hints/msys.pl	(révision 9482)
+++ config/init/hints/msys.pl	(copie de travail)
@@ -10,7 +10,6 @@
 		ld_load_flags => '-shared ',
 		libs => '-lmsvcrt -lmoldname -lkernel32 -luser32 -lgdi32 -lwinspool -lcomdlg32 -ladvapi32 -lshell32 -lole32 -loleaut32 -lnetapi32 -luuid -lws2_32 -lmpr -lwinmm -lversion -lodbc32 ',
 		ncilib_link_extra => 'src/libnci_test.def',
-		slash_exec => '\\',
 	);
 
 }
Index: config/init/hints/mswin32.pl
===================================================================
--- config/init/hints/mswin32.pl	(révision 9482)
+++ config/init/hints/mswin32.pl	(copie de travail)
@@ -21,7 +21,6 @@
                 PQ    => '"',
                 make_c=> '$(PERL) -e "chdir shift @ARGV; system \'$(MAKE)\', @ARGV; exit $$? >> 8;"',
 		ncilib_link_extra => '-def:src/libnci_test.def',
-		slash_exec => '\\',
 	);
 
 	if( $is_msvc ) {
Index: languages/m4/t/basic/003_getopt.t
===================================================================
--- languages/m4/t/basic/003_getopt.t	(révision 9482)
+++ languages/m4/t/basic/003_getopt.t	(copie de travail)
@@ -8,7 +8,7 @@
 use Test::More tests => 25; 
 
 my $real_out;
-my $parrot_m4    = "cd .. && .$PConfig{slash_exec}parrot$PConfig{exe} languages/m4/m4.pbc";
+my $parrot_m4    = "cd .. && .$PConfig{slash}parrot$PConfig{exe} languages/m4/m4.pbc";
 my $examples_dir = 'languages/m4/examples'; 
 
 
Index: languages/m4/t/basic/012_eval.t
===================================================================
--- languages/m4/t/basic/012_eval.t	(révision 9482)
+++ languages/m4/t/basic/012_eval.t	(copie de travail)
@@ -8,7 +8,7 @@
 use Test::More tests => 1; 
 
 my $real_out;
-my $parrot    = "cd .. && .$PConfig{slash_exec}parrot$PConfig{exe}";
+my $parrot    = "cd .. && .$PConfig{slash}parrot$PConfig{exe}";
 
 $real_out     = `$parrot languages/m4/examples/eval.imc 2>&1`; 
 is( $real_out, << 'END_OUT', 'single expression' );
Index: languages/m4/t/freezing/001_freeze.t
===================================================================
--- languages/m4/t/freezing/001_freeze.t	(révision 9482)
+++ languages/m4/t/freezing/001_freeze.t	(copie de travail)
@@ -8,7 +8,7 @@
 #use Test::More tests => 1; 
 use Test::More skip_all => 'infinite loop lurking'; 
 
-my $parrot_m4 = "cd .. && .$PConfig{slash_exec}parrot$PConfig{exe} languages/m4/m4.pbc"; 
+my $parrot_m4 = "cd .. && .$PConfig{slash}parrot$PConfig{exe} languages/m4/m4.pbc"; 
 my $cat  = "$PConfig{perl} -MExtUtils::Command -e cat";
 my $rm_f = "$PConfig{perl} -MExtUtils::Command -e rm_f";
 
Index: languages/m4/t/freezing/002_many_files.t
===================================================================
--- languages/m4/t/freezing/002_many_files.t	(révision 9482)
+++ languages/m4/t/freezing/002_many_files.t	(copie de travail)
@@ -9,7 +9,7 @@
 use Test::More skip_all => 'infinite loop lurking'; 
 
 my $real_out;
-my $parrot_m4 = "cd .. && .$PConfig{slash_exec}parrot$PConfig{exe} languages/m4/m4.pbc";
+my $parrot_m4 = "cd .. && .$PConfig{slash}parrot$PConfig{exe} languages/m4/m4.pbc";
 
 
 #--------------------------------------------