Skip to content

Commit b7e2587

Browse files
committed
SerenityOS -> Ladybird
1 parent ed5c11c commit b7e2587

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# LibJS test262
22

3-
> Run the [Official ECMAScript Conformance Test Suite](https://github.com/tc39/test262) with [SerenityOS](https://github.com/SerenityOS/serenity)'s [`LibJS`](https://github.com/SerenityOS/serenity/tree/master/Userland/Libraries/LibJS)
3+
> Run the [Official ECMAScript Conformance Test Suite](https://github.com/tc39/test262) with [Ladybird](https://github.com/LadybirdWebBrowser/ladybird)'s [`LibJS`](https://github.com/LadybirdWebBrowser/ladybird/tree/master/Userland/Libraries/LibJS)
44
55
## Installation
66

@@ -18,14 +18,14 @@ Dependencies are:
1818

1919
## Usage
2020

21-
To clone test262, clone serenity and build Lagom run:
21+
To clone test262, clone ladybird and build Lagom run:
2222

2323
```console
2424
./setup.sh
2525
```
2626

2727
The repositories will only be cloned if they don't exist yet locally.
28-
If `SERENITY_SOURCE_DIR` is set, it will be used to compile the runner instead of cloning serenity.
28+
If `SERENITY_SOURCE_DIR` is set, it will be used to compile the runner instead of cloning ladybird.
2929

3030
Once that's done, run:
3131

@@ -38,7 +38,7 @@ python3 main.py --libjs-test262-runner ./Build/bin/test262-runner --test262-root
3838
```text
3939
usage: main.py [-h] -j PATH [-t PATH] [-p PATTERN] [-c CONCURRENCY] [--timeout TIMEOUT] [--memory-limit MEMORY_LIMIT] [--json] [--per-file PATH] [-s | -v] [-f] [--parse-only] [--ignore IGNORE] [--forward-stderr] [--summary] [--debug]
4040
41-
Run the test262 ECMAScript test suite with SerenityOS's LibJS
41+
Run the test262 ECMAScript test suite with Ladybird's LibJS
4242
4343
options:
4444
-h, --help show this help message and exit

cmake/FetchLagom.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
#
33
# SPDX-License-Identifier: MIT
44

5-
# Fetch serenity, so that we can build Lagom from it
5+
# Fetch ladybird, so that we can build Lagom from it
66
FetchContent_Declare(lagom
7-
GIT_REPOSITORY https://github.com/SerenityOS/serenity.git
7+
GIT_REPOSITORY https://github.com/LadybirdWebBrowser/ladybird.git
88
GIT_TAG origin/master
99
GIT_SHALLOW TRUE
1010
SOURCE_DIR serenity

main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,7 @@ def write_output(message: Any):
496496

497497
def main() -> None:
498498
parser = ArgumentParser(
499-
description="Run the test262 ECMAScript test suite with SerenityOS's LibJS",
499+
description="Run the test262 ECMAScript test suite with Ladybird's LibJS",
500500
epilog=", ".join(f"{EMOJIS[result]} = {result.value}" for result in TestResult),
501501
)
502502
parser.add_argument(

0 commit comments

Comments
 (0)