[libunwind] 6f1d558 - [libunwind] Fix incorrect lit substitutions in tests

Louis Dionne via cfe-commits cfe-commits at lists.llvm.org
Wed Apr 8 07:50:15 PDT 2020


Author: Louis Dionne
Date: 2020-04-08T10:50:09-04:00
New Revision: 6f1d558db42cf92351c649a66c00b881eb75537c

URL: https://github.com/llvm/llvm-project/commit/6f1d558db42cf92351c649a66c00b881eb75537c
DIFF: https://github.com/llvm/llvm-project/commit/6f1d558db42cf92351c649a66c00b881eb75537c.diff

LOG: [libunwind] Fix incorrect lit substitutions in tests

The LIT substitutions used in libunwind are the same as those from
libc++, and we forgot to update the libunwind tests after the libc++
substitutions started being delimited by braces.

Added: 
    

Modified: 
    libunwind/test/remember_state_leak.pass.sh.s

Removed: 
    


################################################################################
diff  --git a/libunwind/test/remember_state_leak.pass.sh.s b/libunwind/test/remember_state_leak.pass.sh.s
index 821ee926eec8..eb363d0102a8 100644
--- a/libunwind/test/remember_state_leak.pass.sh.s
+++ b/libunwind/test/remember_state_leak.pass.sh.s
@@ -1,6 +1,6 @@
 # REQUIRES: x86, linux
-# RUN: %build -target x86_64-unknown-linux-gnu
-# RUN: %run
+# RUN: %{build} -target x86_64-unknown-linux-gnu
+# RUN: %{run}
 
 # The following assembly is a translation of this code:
 #


        


More information about the cfe-commits mailing list