diff --git a/basis/alien/remote-control/remote-control-tests.factor b/basis/alien/remote-control/remote-control-tests.factor index 8b6c5e9b22..87a015a59f 100644 --- a/basis/alien/remote-control/remote-control-tests.factor +++ b/basis/alien/remote-control/remote-control-tests.factor @@ -11,7 +11,7 @@ IN: alien.remote-control.tests try-process ; : run-test ( -- line ) - os windows? "temp/a.exe" "temp/a.out" ? + os windows? "a.exe" "a.out" ? ascii [ readln ] with-process-reader ; :: test-embedding ( code -- line ) @@ -36,9 +36,9 @@ int main(int argc, char **argv) } ]I ] with-string-writer - "resource:temp" [ compile-file ] with-directory - "resource:" [ run-test ] with-directory ; + [ compile-file ] with-temp-directory + [ run-test ] with-temp-directory ; ! [ "Done." ] [ "" test-embedding ] unit-test -! [ "Done." ] [ "factor_yield();" test-embedding ] unit-test \ No newline at end of file +! [ "Done." ] [ "factor_yield();" test-embedding ] unit-test