[llvm] 48b1991 - [NVPTX][test] Use 'not' to switch an XFAIL test to PASS (#130839)

via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 12 09:20:53 PDT 2025


Author: Alex MacLean
Date: 2025-03-12T09:20:48-07:00
New Revision: 48b19912ca58b62aed0112e0a87dc559c877b9e7

URL: https://github.com/llvm/llvm-project/commit/48b19912ca58b62aed0112e0a87dc559c877b9e7
DIFF: https://github.com/llvm/llvm-project/commit/48b19912ca58b62aed0112e0a87dc559c877b9e7.diff

LOG: [NVPTX][test] Use 'not' to switch an XFAIL test to PASS (#130839)

Use 'not' to confirm the test has the desired behavior and move it to
passing.

Added: 
    

Modified: 
    llvm/test/CodeGen/NVPTX/gvar-init.ll

Removed: 
    


################################################################################
diff  --git a/llvm/test/CodeGen/NVPTX/gvar-init.ll b/llvm/test/CodeGen/NVPTX/gvar-init.ll
index 6fd650f7f326c..2c7963fd0a4b5 100644
--- a/llvm/test/CodeGen/NVPTX/gvar-init.ll
+++ b/llvm/test/CodeGen/NVPTX/gvar-init.ll
@@ -1,5 +1,5 @@
-; RUN: llc < %s -mtriple=nvptx -mcpu=sm_20 | FileCheck %s
+; RUN: not --crash llc < %s -mtriple=nvptx -mcpu=sm_20 2>&1 | FileCheck %s
 
 ; Error out if initializer is given for address spaces that do not support initializers
-; XFAIL: *
+; CHECK: LLVM ERROR: initial value of 'g0' is not allowed in addrspace(3)
 @g0 = addrspace(3) global i32 42


        


More information about the llvm-commits mailing list