I hacked a fix for the automatic variables. To pass the test, the vms
version of the test script needs a fix as well:

--- ../origtests/automatic      Fri Apr 11 18:11:32 2014
+++ tests/scripts/variables/automatic   Fri Apr 11 18:10:19 2014
@@ -73,9 +73,10 @@
   # Fix vms directory syntax
   $answer =~ s#\]/#\]#g;
   # vms returns current directory as []
-  $answer =~ s#\s\.,# \[\],#;
+  $answer =~ s#\s\.,# \[\],#g;
   # vms returns current directory as [] with a comma separator
   $answer =~ s#\s\.\s# \[\],#g;
+  $answer =~ s#\]\s\[#\],\[#g;
   # vms has comma separator instead of space.
   $answer =~ s/baz\.z\s\[/baz\.z,\[/g;
   $answer =~ s/baz\.z\sb/baz\.z,b/g;


_______________________________________________
Bug-make mailing list
Bug-make@gnu.org
https://lists.gnu.org/mailman/listinfo/bug-make

Reply via email to