diff --git a/Library/Homebrew/test/os/linux/pathname_spec.rb b/Library/Homebrew/test/os/linux/pathname_spec.rb index 518ae48b5e..7e4126585a 100644 --- a/Library/Homebrew/test/os/linux/pathname_spec.rb +++ b/Library/Homebrew/test/os/linux/pathname_spec.rb @@ -10,7 +10,7 @@ describe Pathname do def patch_elfs mktmpdir do |tmp_dir| - %w[c.elf cpp.elf go.elf rust.elf].each do |elf| + %w[c.elf].each do |elf| FileUtils.cp(elf_dir/elf, tmp_dir/elf) yield tmp_dir/elf end diff --git a/Library/Homebrew/test/support/fixtures/elf/cpp.elf b/Library/Homebrew/test/support/fixtures/elf/cpp.elf deleted file mode 100755 index 323684c96e..0000000000 Binary files a/Library/Homebrew/test/support/fixtures/elf/cpp.elf and /dev/null differ diff --git a/Library/Homebrew/test/support/fixtures/elf/go.elf b/Library/Homebrew/test/support/fixtures/elf/go.elf deleted file mode 100755 index 7f8e6f43d6..0000000000 Binary files a/Library/Homebrew/test/support/fixtures/elf/go.elf and /dev/null differ diff --git a/Library/Homebrew/test/support/fixtures/elf/rust.elf b/Library/Homebrew/test/support/fixtures/elf/rust.elf deleted file mode 100755 index 5da2ae175b..0000000000 Binary files a/Library/Homebrew/test/support/fixtures/elf/rust.elf and /dev/null differ