17 lines · plain
1; UNSUPPORTED: system-windows2; REQUIRES: non-root-user3; RUN: llvm-as %s -o %t.bc4; RUN: touch %t.resolution.txt5; RUN: chmod u-w %t.resolution.txt6; RUN: not ld.lld -save-temps %t.bc -o %t 2>&1 | FileCheck -DMSG=%errc_EACCES %s7; RUN: rm -f %t.resolution.txt8 9; CHECK: error: [[MSG]]10 11target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"12target triple = "x86_64-unknown-linux-gnu"13 14define void @_start() {15 ret void16}17