diff options
author | Ashley Nelson <nashley@google.com> | 2023-10-04 01:58:48 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-04 08:58:48 +0000 |
commit | 2abc1a80d42ccd3d8e85543d104b5a6dee127248 (patch) | |
tree | f5b807fdacc07d38db0353ee0becf321f77c2f33 /test/gtest/stringify.cpp | |
parent | 2ed773f3981a6014c55d039ad88b8e9889ce9eca (diff) | |
download | binaryen-2abc1a80d42ccd3d8e85543d104b5a6dee127248.tar.gz binaryen-2abc1a80d42ccd3d8e85543d104b5a6dee127248.tar.bz2 binaryen-2abc1a80d42ccd3d8e85543d104b5a6dee127248.zip |
[Outlining] Adds SuffixTree::RepeatSubstring dedupe test (#5972)
This PR adds a StringProcessor struct intended to hold functions that filter vectors of SuffixTree::RepeatedSubstring, and a test of its first functionality, removing overlapping repeated substrings.
Diffstat (limited to 'test/gtest/stringify.cpp')
-rw-r--r-- | test/gtest/stringify.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/test/gtest/stringify.cpp b/test/gtest/stringify.cpp index fac745be9..01d7ad7af 100644 --- a/test/gtest/stringify.cpp +++ b/test/gtest/stringify.cpp @@ -261,3 +261,20 @@ TEST_F(StringifyTest, Substrings) { // 7, 6 appears at idx 11 and again at 24 SuffixTree::RepeatedSubstring{2u, (std::vector<unsigned>{11, 24})}})); } + +TEST_F(StringifyTest, DedupeSubstrings) { + Module wasm; + parseWast(wasm, dupModuleText); + auto hashString = hashStringifyModule(&wasm); + std::vector<SuffixTree::RepeatedSubstring> substrings = + repeatSubstrings(hashString); + auto result = StringifyProcessor::dedupe(substrings); + + EXPECT_EQ( + result, + (std::vector<SuffixTree::RepeatedSubstring>{ + // 5, 6, 7, 6 appears at idx 9 and again at 22 + SuffixTree::RepeatedSubstring{4u, (std::vector<unsigned>{9, 22})}, + // 10, 11, 6 appears at idx 18 and again at 27 + SuffixTree::RepeatedSubstring{3u, (std::vector<unsigned>{18, 27})}})); +} |