From fff2c0f0bf0b3ed9948562eb6b2987f7d64807f4 Mon Sep 17 00:00:00 2001 From: Douglas Yung Date: Wed, 27 Oct 2021 10:49:52 -0700 Subject: [PATCH] Add "REQUIRES: native" to test. This test was failing on the PS4 bot because the test attempts to link, but the PS4 platform requires an external linker that is not present, causing the test to fail. This should get the PS4 bot green again. --- .../debuginfo-tests/clang_llvm_roundtrip/simplified_template_names.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/cross-project-tests/debuginfo-tests/clang_llvm_roundtrip/simplified_template_names.cpp b/cross-project-tests/debuginfo-tests/clang_llvm_roundtrip/simplified_template_names.cpp index 4cf3d7f..24480cd 100644 --- a/cross-project-tests/debuginfo-tests/clang_llvm_roundtrip/simplified_template_names.cpp +++ b/cross-project-tests/debuginfo-tests/clang_llvm_roundtrip/simplified_template_names.cpp @@ -2,6 +2,7 @@ // RUN: mkdir %t // RUN: %clang -fblocks %s -o %t/a.out -g -Xclang -gsimple-template-names=mangled -Xclang -debug-forward-template-params // RUN: llvm-dwarfdump %t/a.out --verify +// REQUIRES: native template struct t1 { }; -- 2.7.4