Tibor Dusnoki | 5225f1b | 2024-12-13 16:28:37 | [diff] [blame] | 1 | ## Check that merge-fdata correctly handles merging two fdata files with both boltedcollection and no_lbr tags. |
2 | |||||
3 | # REQUIRES: system-linux | ||||
4 | |||||
5 | # RUN: split-file %s %t | ||||
6 | # RUN: merge-fdata %t/a.fdata %t/b.fdata -o %t/merged.fdata | ||||
7 | # RUN: FileCheck %s --input-file %t/merged.fdata | ||||
8 | |||||
9 | # CHECK: boltedcollection | ||||
10 | # CHECK: no_lbr | ||||
11 | # CHECK: main 2 | ||||
12 | |||||
13 | #--- a.fdata | ||||
14 | boltedcollection | ||||
15 | no_lbr | ||||
16 | main 1 | ||||
17 | #--- b.fdata | ||||
18 | boltedcollection | ||||
19 | no_lbr | ||||
20 | main 1 |