[llvm] 80df56f - Fix test case in b4a8c0ebb6d4
Yuanfang Chen via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 18 15:56:51 PDT 2021
Author: Yuanfang Chen
Date: 2021-03-18T15:55:48-07:00
New Revision: 80df56f7f9efbf54ac05eb14120eacb6d2c70071
URL: https://github.com/llvm/llvm-project/commit/80df56f7f9efbf54ac05eb14120eacb6d2c70071
DIFF: https://github.com/llvm/llvm-project/commit/80df56f7f9efbf54ac05eb14120eacb6d2c70071.diff
LOG: Fix test case in b4a8c0ebb6d4
Added:
Modified:
llvm/test/MC/ELF/lto-discard.s
Removed:
################################################################################
diff --git a/llvm/test/MC/ELF/lto-discard.s b/llvm/test/MC/ELF/lto-discard.s
index 75a7d7ea5e91..8ea8ab5775cd 100644
--- a/llvm/test/MC/ELF/lto-discard.s
+++ b/llvm/test/MC/ELF/lto-discard.s
@@ -1,17 +1,16 @@
// Check that ".lto_discard" ignores symbol assignments and attribute changes
// for the specified symbols.
-// RUN: llvm-mc -triple x86_64 < %s | FileCheck %s
+// RUN: llvm-mc -triple x86_64-pc-linux-gnu < %s | FileCheck %s
// Check that ".lto_discard" only accepts identifiers.
-// RUN: not llvm-mc -filetype=obj -triple x86_64 --defsym ERR=1 %s 2>&1 |\
+// RUN: not llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu --defsym ERR=1 %s 2>&1 |\
// RUN: FileCheck %s --check-prefix=ERR
-// CHECK: .weak foo
-// CHECK: foo:
-// CHECK: .byte 1
-// CHECK: .weak bar
-// CHECK: bar:
-// CHECK: .byte 2
+// CHECK-NOT: .weak foo
+// CHECK-NOT: foo:
+// CHECK: .weak bar
+// CHECK: bar:
+// CHECK: .byte 2
.lto_discard foo
.weak foo
More information about the llvm-commits
mailing list