aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Goddard <joel.goddard@linaro.org>2021-11-16 17:55:23 +0000
committerJoel Goddard <joel.goddard@linaro.org>2021-11-17 16:38:22 +0000
commit6cdfba9a141cc70c14ad862c26b88fdbf5e25fb8 (patch)
tree1b8509dc1deafd66f648e714e8c35716f2601d0c
parentb4dc5f35ea66849ac66cd9e22b4ec1ef5d7a098d (diff)
downloadart-testing-6cdfba9a141cc70c14ad862c26b88fdbf5e25fb8.tar.gz
Inclusive rewording of comments across multiple files
* Updated multiple instances of 'https://github.com/WebKit/webkit/blob/master/...' to 'https://github.com/WebKit/webkit/blob/main/...' This is a 3rd party repo that has already updated to use main but left a redirect from master. Change-Id: Id4c1a873df105ac26e19ade7870775f2caf735f7
-rw-r--r--README.md2
-rw-r--r--benchmarks/algorithm/AccessFannkuch.java2
-rw-r--r--benchmarks/algorithm/BitopsNSieve.java2
-rw-r--r--benchmarks/algorithm/CryptoMD5.java2
-rw-r--r--benchmarks/algorithm/CryptoSHA1.java2
-rw-r--r--benchmarks/algorithm/NSieve.java2
-rw-r--r--benchmarks/math/AccessNBody.java2
-rw-r--r--benchmarks/math/MathCordic.java2
-rw-r--r--benchmarks/math/MathPartialSums.java2
-rw-r--r--benchmarks/math/MathSpectralNorm.java2
-rw-r--r--benchmarks/micro/ControlFlowRecursive.java2
11 files changed, 11 insertions, 11 deletions
diff --git a/README.md b/README.md
index 795b385..c480258 100644
--- a/README.md
+++ b/README.md
@@ -289,7 +289,7 @@ Description, License (if any), Main Focus, Secondary Focus, Additional Comments
### Control Flow Recursive
Control flow recursive is ported from:
-https://github.com/WebKit/webkit/blob/master/PerformanceTests/SunSpider/tests/sunspider-1.0.2/controlflow-recursive.js
+https://github.com/WebKit/webkit/blob/main/PerformanceTests/SunSpider/tests/sunspider-1.0.2/controlflow-recursive.js
License is Revised BSD licence:
http://benchmarksgame.alioth.debian.org/license.html
diff --git a/benchmarks/algorithm/AccessFannkuch.java b/benchmarks/algorithm/AccessFannkuch.java
index db18f9c..c34ad1e 100644
--- a/benchmarks/algorithm/AccessFannkuch.java
+++ b/benchmarks/algorithm/AccessFannkuch.java
@@ -1,6 +1,6 @@
/*
* Copyright (C) 2015 Linaro Limited. Ported to Java from:
- * https://github.com/WebKit/webkit/blob/master/PerformanceTests/SunSpider/tests/sunspider-1.0.2/access-fannkuch.js
+ * https://github.com/WebKit/webkit/blob/main/PerformanceTests/SunSpider/tests/sunspider-1.0.2/access-fannkuch.js
*
* Description: Algorithm that performs array permutations.
* Main Focus: Array operations.
diff --git a/benchmarks/algorithm/BitopsNSieve.java b/benchmarks/algorithm/BitopsNSieve.java
index 6de8847..79517e3 100644
--- a/benchmarks/algorithm/BitopsNSieve.java
+++ b/benchmarks/algorithm/BitopsNSieve.java
@@ -1,6 +1,6 @@
/*
* Copyright (C) 2015 Linaro Limited. Ported to Java from:
- * https://github.com/WebKit/webkit/blob/master/PerformanceTests/SunSpider/tests/sunspider-1.0.2/bitops-nsieve-bits.js
+ * https://github.com/WebKit/webkit/blob/main/PerformanceTests/SunSpider/tests/sunspider-1.0.2/bitops-nsieve-bits.js
*
* Description: Bitops prime number sieve, used for finding prime numbers.
* Main Focus: Bitwise operations.
diff --git a/benchmarks/algorithm/CryptoMD5.java b/benchmarks/algorithm/CryptoMD5.java
index 9cbb83b..942f3fe 100644
--- a/benchmarks/algorithm/CryptoMD5.java
+++ b/benchmarks/algorithm/CryptoMD5.java
@@ -1,6 +1,6 @@
/*
* Copyright (C) 2015 Linaro Limited. Ported to Java from:
- * https://github.com/WebKit/webkit/blob/master/PerformanceTests/SunSpider/tests/sunspider-1.0.2/crypto-md5.js
+ * https://github.com/WebKit/webkit/blob/main/PerformanceTests/SunSpider/tests/sunspider-1.0.2/crypto-md5.js
*
* Description: Encrypts a text fragment using the MD5 message-digest
* algorithm, producing a 128-bit hash value.
diff --git a/benchmarks/algorithm/CryptoSHA1.java b/benchmarks/algorithm/CryptoSHA1.java
index c58f3fd..089f83f 100644
--- a/benchmarks/algorithm/CryptoSHA1.java
+++ b/benchmarks/algorithm/CryptoSHA1.java
@@ -1,6 +1,6 @@
/*
* Copyright (C) 2015 Linaro Limited. Ported to Java from:
- * https://github.com/WebKit/webkit/blob/master/PerformanceTests/SunSpider/tests/sunspider-1.0.2/crypto-sha1.js
+ * https://github.com/WebKit/webkit/blob/main/PerformanceTests/SunSpider/tests/sunspider-1.0.2/crypto-sha1.js
*
* Description: Encrypts a text fragment using the SHA1 Secure Hash
* Algorithm, producing a 160-bit hash value.
diff --git a/benchmarks/algorithm/NSieve.java b/benchmarks/algorithm/NSieve.java
index bbe8d09..28403a8 100644
--- a/benchmarks/algorithm/NSieve.java
+++ b/benchmarks/algorithm/NSieve.java
@@ -1,6 +1,6 @@
/*
* Copyright (C) 2015 Linaro Limited. Ported to Java from:
- * https://github.com/WebKit/webkit/blob/master/PerformanceTests/SunSpider/tests/sunspider-1.0.2/access-nsieve.js
+ * https://github.com/WebKit/webkit/blob/main/PerformanceTests/SunSpider/tests/sunspider-1.0.2/access-nsieve.js
*
*/
diff --git a/benchmarks/math/AccessNBody.java b/benchmarks/math/AccessNBody.java
index 6a55723..e9642b0 100644
--- a/benchmarks/math/AccessNBody.java
+++ b/benchmarks/math/AccessNBody.java
@@ -1,6 +1,6 @@
/*
* Copyright (C) 2015 Linaro Limited. Ported to Java from:
- * https://github.com/WebKit/webkit/blob/master/PerformanceTests/SunSpider/tests/sunspider-1.0.2/access-nbody.js
+ * https://github.com/WebKit/webkit/blob/main/PerformanceTests/SunSpider/tests/sunspider-1.0.2/access-nbody.js
*
* Description: N-body simulation of a galaxy composed out of a four planets and the sun.
* Main Focus: Floating-point operations.
diff --git a/benchmarks/math/MathCordic.java b/benchmarks/math/MathCordic.java
index 60b226c..6b5a608 100644
--- a/benchmarks/math/MathCordic.java
+++ b/benchmarks/math/MathCordic.java
@@ -1,6 +1,6 @@
/*
* Ported to java from:
- * https://github.com/WebKit/webkit/blob/master/PerformanceTests/SunSpider/tests/sunspider-1.0.2/math-cordic.js
+ * https://github.com/WebKit/webkit/blob/main/PerformanceTests/SunSpider/tests/sunspider-1.0.2/math-cordic.js
*
* Copyright (C) Rich Moore. All rights reserved.
* Copyright (C) 2015 Linaro Limited. For the port to Java
diff --git a/benchmarks/math/MathPartialSums.java b/benchmarks/math/MathPartialSums.java
index b144338..fb0b8de 100644
--- a/benchmarks/math/MathPartialSums.java
+++ b/benchmarks/math/MathPartialSums.java
@@ -1,6 +1,6 @@
/*
* Copyright (C) 2015 Linaro Limited. Ported to Java from:
- * https://github.com/WebKit/webkit/blob/master/PerformanceTests/SunSpider/tests/sunspider-1.0.2/math-partial-sums.js
+ * https://github.com/WebKit/webkit/blob/main/PerformanceTests/SunSpider/tests/sunspider-1.0.2/math-partial-sums.js
*
* Description: Partial sum calculation of a series using Math().pow(),
* Math.sin() and Math.cos().
diff --git a/benchmarks/math/MathSpectralNorm.java b/benchmarks/math/MathSpectralNorm.java
index 2f80d2b..c66b142 100644
--- a/benchmarks/math/MathSpectralNorm.java
+++ b/benchmarks/math/MathSpectralNorm.java
@@ -1,6 +1,6 @@
/*
* Copyright (C) 2015 Linaro Limited. Ported from:
- * https://github.com/WebKit/webkit/blob/master/PerformanceTests/SunSpider/tests/sunspider-1.0.2/math-spectral-norm.js
+ * https://github.com/WebKit/webkit/blob/main/PerformanceTests/SunSpider/tests/sunspider-1.0.2/math-spectral-norm.js
*
* Description: Martrix spectral norm calculation.
* Main Focus: Floating-Point operations.
diff --git a/benchmarks/micro/ControlFlowRecursive.java b/benchmarks/micro/ControlFlowRecursive.java
index a0a5800..7e92ffd 100644
--- a/benchmarks/micro/ControlFlowRecursive.java
+++ b/benchmarks/micro/ControlFlowRecursive.java
@@ -1,6 +1,6 @@
/*
* Copyright (c) 2015, Linaro Limited. Ported to Java from:
- * https://github.com/WebKit/webkit/blob/master/PerformanceTests/SunSpider/tests/sunspider-1.0.2/controlflow-recursive.js
+ * https://github.com/WebKit/webkit/blob/main/PerformanceTests/SunSpider/tests/sunspider-1.0.2/controlflow-recursive.js
* and added Tarai.
*
* Description: A control flow recursive micro benchmark case.