Skip to content

Commit

Permalink
Disable mkfifo spec for interpreter (crystal-lang#14051)
Browse files Browse the repository at this point in the history
  • Loading branch information
HertzDevil authored Dec 6, 2023
1 parent 9c92628 commit eebf265
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion spec/std/file_utils_spec.cr
Original file line number Diff line number Diff line change
Expand Up @@ -715,7 +715,8 @@ describe "FileUtils" do
end
end

{% if flag?(:unix) %}
# FIXME: `Process.run` and backtick don't work in the interpreter (#12241)
{% if flag?(:unix) && !flag?(:interpreted) %}
it "overwrites a destination named pipe" do
with_tempfile("ln_sf_src", "ln_sf_dst_pipe_exists") do |path1, path2|
test_with_string_and_path(path1, path2) do |arg1, arg2|
Expand Down

0 comments on commit eebf265

Please sign in to comment.