[PATCH] D115814: [Debuginfod] Remove f-string from llvm-debuginfod-find lit test.

Noah Shutty via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Dec 16 11:22:35 PST 2021


This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG35ccde20ea99: [Debuginfod] Remove f-string from llvm-debuginfod-find lit test. (authored by noajshu).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D115814/new/

https://reviews.llvm.org/D115814

Files:
  llvm/test/tools/llvm-debuginfod-find/debuginfod.test


Index: llvm/test/tools/llvm-debuginfod-find/debuginfod.test
===================================================================
--- llvm/test/tools/llvm-debuginfod-find/debuginfod.test
+++ llvm/test/tools/llvm-debuginfod-find/debuginfod.test
@@ -52,7 +52,7 @@
     try:
         thread.start()
         env = os.environ
-        env['DEBUGINFOD_URLS'] = f'http://localhost:%s' % port
+        env['DEBUGINFOD_URLS'] = 'http://localhost:%s' % port
         process = subprocess.Popen(
             tool_args, env=env)
         code = process.wait()


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D115814.394935.patch
Type: text/x-patch
Size: 548 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20211216/af01d083/attachment.bin>


More information about the llvm-commits mailing list