-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove custom CMake setup in favor of using Ladybird's build
Our support for building test262-runner in a standalone manner has gone quite stale. Rather than keeping it up to date, just document using the test262-runner from the Ladybird repository. And replace the setup.sh script with a script that only clones/syncs the test262 repo.
- Loading branch information
Showing
5 changed files
with
40 additions
and
106 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/usr/bin/env bash | ||
TEST262_SOURCE_DIR="${TEST262_SOURCE_DIR:-test262}" | ||
|
||
log() { | ||
echo -e "\033[0;34m[${1}]\033[0m ${2}" | ||
} | ||
|
||
if [[ -d "${TEST262_SOURCE_DIR}" ]]; then | ||
log test262 "Updating test262 directory" | ||
|
||
pushd "${TEST262_SOURCE_DIR}" | ||
git pull | ||
popd | ||
else | ||
log test262 "test262 directory not found, cloning repository" | ||
git clone --depth 1 https://github.com/tc39/test262.git | ||
fi |