Skip to content

Commit 2e127ec

Browse files
leobalterrwaldron
authored andcommitted
Rename usage of master to main
Ref #2699
1 parent e193b44 commit 2e127ec

File tree

15 files changed

+24
-24
lines changed

15 files changed

+24
-24
lines changed

.github/workflows/update-master-after-main.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Updates the master branch after main
1+
name: Updates the main branch after main
22
on:
33
push:
44
branches:
@@ -14,4 +14,4 @@ jobs:
1414
fetch-depth: 0
1515
- name: Push
1616
run: |
17-
git push origin HEAD:master
17+
git push origin HEAD:main

CONTRIBUTING.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -250,10 +250,10 @@ function Test262Error(message) {
250250

251251
## Rules For Module `_FIXTURE.js` Files
252252

253-
The [Module section of INTERPRETING.md](https://github.com/tc39/test262/blob/master/INTERPRETING.md#modules) states that `_FIXTURE.js` files will not have have Realm modifications applied. In practice, this means that code in `_FIXTURE.js` files must abide by the following rules:
253+
The [Module section of INTERPRETING.md](https://github.com/tc39/test262/blob/HEAD/INTERPRETING.md#modules) states that `_FIXTURE.js` files will not have have Realm modifications applied. In practice, this means that code in `_FIXTURE.js` files must abide by the following rules:
254254

255-
- **MUST NOT** refer to, or make use of any [Test262-Defined Bindings](https://github.com/tc39/test262/blob/master/INTERPRETING.md#test262-defined-bindings) in any way.
256-
- **MUST NOT** refer to, or make use of any [Host-Defined Functions](https://github.com/tc39/test262/blob/master/INTERPRETING.md#host-defined-functions) in any way.
255+
- **MUST NOT** refer to, or make use of any [Test262-Defined Bindings](https://github.com/tc39/test262/blob/HEAD/INTERPRETING.md#test262-defined-bindings) in any way.
256+
- **MUST NOT** refer to, or make use of any [Host-Defined Functions](https://github.com/tc39/test262/blob/HEAD/INTERPRETING.md#host-defined-functions) in any way.
257257

258258
## Handling Errors and Negative Test Cases
259259

INTERPRETING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ properties of the global scope prior to test execution.
107107
sleeps the execution for approximately that duration.
108108
- **`monotonicNow`** - a function that returns a value that conforms to [`DOMHighResTimeStamp`][] and is produced in such a way that its semantics conform to **[Monotonic Clock][]**.
109109

110-
In addition, consumers may choose to override any of the [the available test harness helper functions](https://github.com/tc39/test262/blob/master/CONTRIBUTING.md#test-environment) as they see fit. See [the documentation on handling errors and negative test cases](https://github.com/tc39/test262/blob/master/CONTRIBUTING.md#handling-errors-and-negative-test-cases) for a useful example of this.
110+
In addition, consumers may choose to override any of the [the available test harness helper functions](https://github.com/tc39/test262/blob/HEAD/CONTRIBUTING.md#test-environment) as they see fit. See [the documentation on handling errors and negative test cases](https://github.com/tc39/test262/blob/HEAD/CONTRIBUTING.md#handling-errors-and-negative-test-cases) for a useful example of this.
111111

112112

113113
#### Normative references
@@ -138,7 +138,7 @@ This must precede any additional text modifications described by test metadata.
138138
### Modules
139139

140140
Test262 includes tests for ECMAScript 2015 module code, denoted by the "module"
141-
metadata flag. Files bearing a name ending in `_FIXTURE.js` **MUST NOT** be interpreted as standalone tests; they are intended to be referenced by test files. Realm modifications, including [Test262-Defined Bindings](#test262-defined-bindings) and [Host-Defined Functions](#host-defined-functions), are not applied to code executed from `_FIXTURE.js` files. See the [**Rules For Module `_FIXTURE.js` Files** section of CONTRIBUTING.md](https://github.com/tc39/test262/blob/master/CONTRIBUTING.md#rules-for-module-fixturejs-files) for more information.
141+
metadata flag. Files bearing a name ending in `_FIXTURE.js` **MUST NOT** be interpreted as standalone tests; they are intended to be referenced by test files. Realm modifications, including [Test262-Defined Bindings](#test262-defined-bindings) and [Host-Defined Functions](#host-defined-functions), are not applied to code executed from `_FIXTURE.js` files. See the [**Rules For Module `_FIXTURE.js` Files** section of CONTRIBUTING.md](https://github.com/tc39/test262/blob/HEAD/CONTRIBUTING.md#rules-for-module-fixturejs-files) for more information.
142142

143143
All module specifiers used by Test262 begin with the character sequence `./`.
144144
The remaining characters should be interpreted as the name of a file within the

harness/atomicsHelper.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,12 +82,12 @@ defines:
8282
* meet its termination condition and the test will hang indefinitely.
8383
*
8484
* Because we've defined $262.agent.broadcast(SAB) in
85-
* https://github.com/tc39/test262/blob/master/INTERPRETING.md, there are host implementations
85+
* https://github.com/tc39/test262/blob/HEAD/INTERPRETING.md, there are host implementations
8686
* that assume compatibility, which must be maintained.
8787
*
8888
*
8989
* $262.agent.safeBroadcast(TA) should not be included in
90-
* https://github.com/tc39/test262/blob/master/INTERPRETING.md
90+
* https://github.com/tc39/test262/blob/HEAD/INTERPRETING.md
9191
*
9292
*
9393
* @param {(Int32Array|BigInt64Array)} typedArray An Int32Array or BigInt64Array with a SharedArrayBuffer

make.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def clean():
5353
def deploy():
5454
shell('git', 'add', '--all', OUT_DIR)
5555
shell('git', 'commit', '--message', '"Re-build from source"')
56-
shell('git', 'push', UPSTREAM, 'master')
56+
shell('git', 'push', UPSTREAM, 'main')
5757
shell('git', 'checkout', '-')
5858

5959
# Generate a deploy key for use in a continuous integration system, allowing

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"scripts": {
2020
"ci": "./tools/scripts/ci_test.sh",
2121
"test": "test262-harness",
22-
"diff": "git diff --diff-filter ACMR --name-only master.. -- test/ && git ls-files --exclude-standard --others -- test/",
22+
"diff": "git diff --diff-filter ACMR --name-only main.. -- test/ && git ls-files --exclude-standard --others -- test/",
2323
"test:diff": "npm run test:diff:v8 && npm run test:diff:spidermonkey && npm run test:diff:chakra && npm run test:diff:javascriptcore",
2424
"test:diff:v8": "test262-harness -t 8 --hostType=d8 --hostPath=v8 $(npm run --silent diff)",
2525
"test:diff:spidermonkey": "test262-harness -t 8 --hostType=jsshell --hostPath=spidermonkey $(npm run --silent diff)",

test/built-ins/Array/prototype/concat/S15.4.4.4_A3_T2.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2014 Ecma International. All rights reserved.
2-
// See LICENSE or https://github.com/tc39/test262/blob/master/LICENSE
2+
// See LICENSE or https://github.com/tc39/test262/blob/HEAD/LICENSE
33

44
/*---
55
esid: sec-array.prototype.concat

test/built-ins/Array/prototype/concat/S15.4.4.4_A3_T3.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2014 Ecma International. All rights reserved.
2-
// See LICENSE or https://github.com/tc39/test262/blob/master/LICENSE
2+
// See LICENSE or https://github.com/tc39/test262/blob/HEAD/LICENSE
33

44
/*---
55
esid: sec-array.prototype.concat

tools/lint/lib/checks/license.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
r'// Use of this source code is governed by a BSD-style license that can be[\r\n]{1,2}' +
1616
r'// found in the LICENSE file\.' +
1717
r'|' +
18-
r'// See LICENSE or https://github\.com/tc39/test262/blob/master/LICENSE' +
18+
r'// See LICENSE or https://github\.com/tc39/test262/blob/main/LICENSE' +
1919
r')', re.IGNORECASE)
2020

2121
class CheckLicense(Check):

tools/lint/test/fixtures/license_alternate_5.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
^ expected errors | v input
22
// Copyright (C) 2017 Mike Pennisi. All rights reserved.
3-
// See LICENSE or https://github.com/tc39/test262/blob/master/LICENSE
3+
// See LICENSE or https://github.com/tc39/test262/blob/HEAD/LICENSE
44
/*---
55
esid: sec-assignment-operators-static-semantics-early-errors
66
description: Minimal test

tools/packaging/parseTestRecord.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
r'// Use of this source code is governed by a BSD-style license that can be[\r\n]{1,2}' +
2727
r'// found in the LICENSE file\.' +
2828
r'|' +
29-
r'// See LICENSE or https://github\.com/tc39/test262/blob/master/LICENSE' +
29+
r'// See LICENSE or https://github\.com/tc39/test262/blob/main/LICENSE' +
3030
r')[\r\n]{1,2}' + _BLANK_LINES, re.IGNORECASE)
3131

3232
yamlLoad = None

tools/scripts/ci_build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ fi
66
if [ -n "$(git status --porcelain)" -a "$CIRCLE_PULL_REQUEST" != "" ]; then
77
echo New changes were found after re-generating the tests.
88
echo Please, read the documentation on procedurally generated tests
9-
echo 'https://github.com/tc39/test262/blob/master/CONTRIBUTING.md#procedurally-generated-tests'
9+
echo 'https://github.com/tc39/test262/blob/HEAD/CONTRIBUTING.md#procedurally-generated-tests'
1010
exit 1
1111
fi

tools/scripts/ci_lint.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
if [ "$CIRCLE_PULL_REQUEST" != "" ]; then
4-
paths=$(git diff --diff-filter ACMR --name-only origin/master.. -- test/)
4+
paths=$(git diff --diff-filter ACMR --name-only origin/main.. -- test/)
55

66
if [ "$paths" == "" ]; then
77
echo No test files added or modified. Exiting.

tools/scripts/ci_test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
if [ "$CIRCLE_PULL_REQUEST" != "" ]; then
4-
paths=$(git diff --diff-filter ACMR --name-only origin/master.. -- test/)
4+
paths=$(git diff --diff-filter ACMR --name-only origin/main.. -- test/)
55

66
if [ "$paths" == "" ]; then
77
echo No test files added or modified. Exiting.

tools/scripts/deploy.sh

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
2-
if [ $CIRCLE_EVENT_TYPE != "push" -o $CIRCLE_BRANCH != "master" ]; then
3-
echo This job is not running against a commit that has been merged to master.
2+
if [ $CIRCLE_EVENT_TYPE != "push" -o $CIRCLE_BRANCH != "main" ]; then
3+
echo This job is not running against a commit that has been merged to main.
44
echo Skipping deployment.
55
exit 0
66
fi
@@ -16,9 +16,9 @@ ssh-add github-deploy-key
1616
rm github-deploy-key
1717
git config --global user.email "[email protected]"
1818
git config --global user.name "Test262 Automation Script"
19-
# The repository on TravisCI is a shallow clone, so the `master` branch must
19+
# The repository on TravisCI is a shallow clone, so the `main` branch must
2020
# be retrieved explicitly, and a local branch created from the `FETCH_HEAD`
2121
# git reference
22-
git fetch origin master
23-
git branch master FETCH_HEAD
22+
git fetch origin main
23+
git branch main FETCH_HEAD
2424
./make.py deploy

0 commit comments

Comments
 (0)