From 94a20f67066034fbbf313cada67a745f4294915f Mon Sep 17 00:00:00 2001 From: Andrew Kaster Date: Mon, 19 May 2025 09:55:29 -0600 Subject: [PATCH] Tests+Utilities: Move test262-runner to Utilities This is a utility more than it is a test in itself. We use it to run test262 tests, which are external to this repo. The test-js runner is still private test infrastructure though, so it stays where it is. --- Meta/Lagom/CMakeLists.txt | 2 +- {Tests/LibJS => Utilities}/test262-runner.cpp | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename {Tests/LibJS => Utilities}/test262-runner.cpp (100%) diff --git a/Meta/Lagom/CMakeLists.txt b/Meta/Lagom/CMakeLists.txt index a3450535dfc..17b0f3118a9 100644 --- a/Meta/Lagom/CMakeLists.txt +++ b/Meta/Lagom/CMakeLists.txt @@ -424,7 +424,7 @@ if (ENABLE_GUI_TARGETS) endif() lagom_utility(js SOURCES ../../Utilities/js.cpp LIBS LibCrypto LibJS LibLine LibUnicode LibMain LibTextCodec LibGC Threads::Threads) -lagom_utility(test262-runner SOURCES ../../Tests/LibJS/test262-runner.cpp LIBS LibJS LibFileSystem LibGC) +lagom_utility(test262-runner SOURCES ../../Utilities/test262-runner.cpp LIBS LibJS LibFileSystem LibGC) if (CMAKE_SYSTEM_NAME STREQUAL "Linux") include(CheckCSourceCompiles) diff --git a/Tests/LibJS/test262-runner.cpp b/Utilities/test262-runner.cpp similarity index 100% rename from Tests/LibJS/test262-runner.cpp rename to Utilities/test262-runner.cpp