[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 05:16:47 PST 2022


fzhinkin created this revision.
Herald added subscribers: ormris, steven_wu, hiraditya, inglorion.
Herald added a project: All.
fzhinkin requested review of this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.

Use CHECK-DAG to check module names that printed in order depending
on full file path.

Related issue: https://github.com/llvm/llvm-project/issues/59248


Repository:
  rG LLVM Github Monorepo

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.478538.patch
Type: text/x-patch
Size: 686 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20221129/79e786a4/attachment.bin>


More information about the llvm-commits mailing list