]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/io/launcher/windows/windows-tests.factor
core: Change lines -> read-lines, contents -> read-contents, string-lines -> lines
[factor.git] / basis / io / launcher / windows / windows-tests.factor
index 13576e9fb38a61380c1fc06785ec57ddb2041f2e..08d3bb6e2c06a2e08ac7fc6866ee6efa3d9bdd6c 100644 (file)
@@ -158,7 +158,7 @@ SYMBOLS: out-path err-path ;
     launcher-test-path [
         <process>
             console-vm-path "-script" "env.factor" 3array >>command
-        utf8 [ contents ] with-process-reader
+        utf8 [ read-contents ] with-process-reader
     ] with-directory eval( -- alist )
 
     os-envs =
@@ -170,7 +170,7 @@ SYMBOLS: out-path err-path ;
             console-vm-path "-script" "env.factor" 3array >>command
             +replace-environment+ >>environment-mode
             os-envs >>environment
-        utf8 [ contents ] with-process-reader
+        utf8 [ read-contents ] with-process-reader
     ] with-directory eval( -- alist )
 
     os-envs =
@@ -181,7 +181,7 @@ SYMBOLS: out-path err-path ;
         <process>
             console-vm-path "-script" "env.factor" 3array >>command
             { { "A" "B" } } >>environment
-        utf8 [ contents ] with-process-reader
+        utf8 [ read-contents ] with-process-reader
     ] with-directory eval( -- alist )
 
     "A" of
@@ -193,7 +193,7 @@ SYMBOLS: out-path err-path ;
             console-vm-path "-script" "env.factor" 3array >>command
             { { "USERPROFILE" "XXX" } } >>environment
             +prepend-environment+ >>environment-mode
-        utf8 [ contents ] with-process-reader
+        utf8 [ read-contents ] with-process-reader
     ] with-directory eval( -- alist )
 
     "USERPROFILE" of "XXX" =