[PATCH] D138913: [NFC][ORC] Fix lljit-with-thinlto-summaries.test output ordering issue

Filipp Zhinkin via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Nov 29 07:16:03 PST 2022


This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rGc59822cd1a48: [NFC][ORC] Fix lljit-with-thinlto-summaries.test output ordering issue (authored by fzhinkin).

Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D138913

Files:
  llvm/test/Examples/OrcV2Examples/lljit-with-thinlto-summaries.test


Index: llvm/test/Examples/OrcV2Examples/lljit-with-thinlto-summaries.test
===================================================================
--- llvm/test/Examples/OrcV2Examples/lljit-with-thinlto-summaries.test
+++ llvm/test/Examples/OrcV2Examples/lljit-with-thinlto-summaries.test
@@ -9,6 +9,6 @@
 # RUN: LLJITWithThinLTOSummaries %T/main-foo-bar.thinlto.bc 2>&1 | FileCheck %s
 
 # CHECK: About to load module: {{.*}}/main-mod.bc
-# CHECK: About to load module: {{.*}}/foo-mod.bc
-# CHECK: About to load module: {{.*}}/bar-mod.bc
+# CHECK-DAG: About to load module: {{.*}}/foo-mod.bc
+# CHECK-DAG: About to load module: {{.*}}/bar-mod.bc
 # CHECK: 'main' finished with exit code: 0


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D138913.478587.patch
Type: text/x-patch
Size: 686 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20221129/e7c56f3d/attachment.bin>


More information about the llvm-commits mailing list