Fix minidump unit test failures from r349062

This commit added new test inputs, but it did not add them to the cmake
files. This caused the test to fail at runtime.

While in there, I also sorted the list of minidump test inputs.

llvm-svn: 349154
This commit is contained in:
Pavel Labath 2018-12-14 14:41:04 +00:00
parent 091fcdb10b
commit eed7b2eeca
1 changed files with 12 additions and 9 deletions

View File

@ -13,18 +13,21 @@ add_lldb_unittest(LLDBMinidumpTests
)
set(test_inputs
bad_duplicate_streams.dmp
bad_overlapping_streams.dmp
fizzbuzz_no_heap.dmp
fizzbuzz_wow64.dmp
linux-i386.dmp
linux-x86_64.dmp
linux-x86_64_not_crashed.dmp
fizzbuzz_no_heap.dmp
fizzbuzz_wow64.dmp
bad_duplicate_streams.dmp
bad_overlapping_streams.dmp
thread-list-padded.dmp
thread-list-not-padded.dmp
module-list-padded.dmp
module-list-not-padded.dmp
memory-list-not-padded.dmp
memory-list-padded.dmp
memory-list-not-padded.dmp)
module-list-not-padded.dmp
module-list-padded.dmp
modules-dup-min-addr.dmp
modules-order.dmp
thread-list-not-padded.dmp
thread-list-padded.dmp
)
add_unittest_inputs(LLDBMinidumpTests "${test_inputs}")