summaryrefslogtreecommitdiff
path: root/Tests
diff options
context:
space:
mode:
authorTimothy Flynn <trflynn89@pm.me>2022-09-02 10:41:33 -0400
committerTim Flynn <trflynn89@pm.me>2022-09-05 14:37:16 -0400
commitfc8bf7ac3e0fd01e93c8f1d1544342e0f84d7641 (patch)
tree0b561e6161d7b35025400b03ff940ab2ad00d9a4 /Tests
parent89d1813b5de9fdad9021d88116e25cf98b5d6ad2 (diff)
downloadserenity-fc8bf7ac3e0fd01e93c8f1d1544342e0f84d7641.zip
LibUnicode+Userland: Migrate generated CLDR data to LibLocaleData
Currently, LibUnicodeData contains the generated UCD and CLDR data. Move the UCD data to the main LibUnicode library, and rename LibUnicodeData to LibLocaleData. This is another prepatory change to migrate to LibLocale.
Diffstat (limited to 'Tests')
-rw-r--r--Tests/LibJS/CMakeLists.txt6
-rw-r--r--Tests/LibRegex/CMakeLists.txt2
-rw-r--r--Tests/LibUnicode/CMakeLists.txt2
-rw-r--r--Tests/Spreadsheet/CMakeLists.txt1
4 files changed, 4 insertions, 7 deletions
diff --git a/Tests/LibJS/CMakeLists.txt b/Tests/LibJS/CMakeLists.txt
index 5ed112091d..8b62b1cfaa 100644
--- a/Tests/LibJS/CMakeLists.txt
+++ b/Tests/LibJS/CMakeLists.txt
@@ -1,10 +1,10 @@
serenity_testjs_test(test-js.cpp test-js)
install(TARGETS test-js RUNTIME DESTINATION bin OPTIONAL)
-link_with_unicode_data(test-js)
+link_with_locale_data(test-js)
serenity_test(test-invalid-unicode-js.cpp LibJS LIBS LibJS)
-link_with_unicode_data(test-invalid-unicode-js)
+link_with_locale_data(test-invalid-unicode-js)
serenity_test(test-bytecode-js.cpp LibJS LIBS LibJS)
-link_with_unicode_data(test-bytecode-js)
+link_with_locale_data(test-bytecode-js)
diff --git a/Tests/LibRegex/CMakeLists.txt b/Tests/LibRegex/CMakeLists.txt
index d632992976..eeeacecfba 100644
--- a/Tests/LibRegex/CMakeLists.txt
+++ b/Tests/LibRegex/CMakeLists.txt
@@ -7,5 +7,3 @@ set(TEST_SOURCES
foreach(source IN LISTS TEST_SOURCES)
serenity_test("${source}" LibRegex LIBS LibRegex)
endforeach()
-
-link_with_unicode_data(Regex)
diff --git a/Tests/LibUnicode/CMakeLists.txt b/Tests/LibUnicode/CMakeLists.txt
index 42c89a6d80..3e056c5994 100644
--- a/Tests/LibUnicode/CMakeLists.txt
+++ b/Tests/LibUnicode/CMakeLists.txt
@@ -8,5 +8,5 @@ foreach(source IN LISTS TEST_SOURCES)
serenity_test("${source}" LibUnicode LIBS LibUnicode)
get_filename_component(target "${source}" NAME_WLE)
- link_with_unicode_data("${target}")
+ link_with_locale_data("${target}")
endforeach()
diff --git a/Tests/Spreadsheet/CMakeLists.txt b/Tests/Spreadsheet/CMakeLists.txt
index 1a710f372a..e0aa8ef5f2 100644
--- a/Tests/Spreadsheet/CMakeLists.txt
+++ b/Tests/Spreadsheet/CMakeLists.txt
@@ -1,3 +1,2 @@
serenity_testjs_test(test-spreadsheet.cpp test-spreadsheet)
install(TARGETS test-spreadsheet RUNTIME DESTINATION bin OPTIONAL)
-link_with_unicode_data(test-spreadsheet)