xref: /llvm-project/lld/test/MachO/invalid/no-filelist.s (revision 42a21778f61cdc8462ce2cfb6ad7bc1992b2063c)
1# REQUIRES: x86
2# RUN: llvm-mc -filetype=obj -triple=x86_64-apple-darwin %s -o %t.o
3# RUN: not %lld -filelist nonexistent %t.o -o %t 2>&1 | FileCheck -DMSG=%errc_ENOENT %s
4# CHECK: cannot open nonexistent: [[MSG]]
5
6.globl _main
7
8_main:
9  ret
10