diff options
Diffstat (limited to 'test/gtest')
-rw-r--r-- | test/gtest/CMakeLists.txt | 2 | ||||
-rw-r--r-- | test/gtest/topological-sort.cpp (renamed from test/gtest/topological-orders.cpp) | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/gtest/CMakeLists.txt b/test/gtest/CMakeLists.txt index 17e880a4e..7ef72db13 100644 --- a/test/gtest/CMakeLists.txt +++ b/test/gtest/CMakeLists.txt @@ -13,7 +13,7 @@ set(unittest_SOURCES scc.cpp stringify.cpp suffix_tree.cpp - topological-orders.cpp + topological-sort.cpp type-builder.cpp wat-lexer.cpp validator.cpp diff --git a/test/gtest/topological-orders.cpp b/test/gtest/topological-sort.cpp index 67c56cbdb..6a04a71ff 100644 --- a/test/gtest/topological-orders.cpp +++ b/test/gtest/topological-sort.cpp @@ -18,7 +18,7 @@ #include <optional> #include <vector> -#include "support/topological_orders.h" +#include "support/topological_sort.h" #include "gtest/gtest.h" using namespace wasm; |