summaryrefslogtreecommitdiff
path: root/Tests/LibJS
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/LibJS
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/LibJS')
-rw-r--r--Tests/LibJS/CMakeLists.txt6
1 files changed, 3 insertions, 3 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)