aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Godbolt <matt@godbolt.org>2020-09-26 17:50:40 -0500
committerGitHub <noreply@github.com>2020-09-26 17:50:40 -0500
commitf68198af9e5ec0b365f4bfdfad7edd3094ade4f5 (patch)
treedb8db7ee17a91c4d1e1565055952c2d1af063fb2
parenta2eed58cd0c517c58a89aef1987eb8bdf90c5fd1 (diff)
downloadcompiler-explorer-f68198af9e5ec0b365f4bfdfad7edd3094ade4f5.tar.gz
compiler-explorer-f68198af9e5ec0b365f4bfdfad7edd3094ade4f5.zip
Reassign copyright to Compiler Explorer Authors (#2233)
-rwxr-xr-xapp.js2
-rw-r--r--lib/asm-parser.js2
-rw-r--r--lib/aws.js2
-rw-r--r--lib/base-compiler.js2
-rw-r--r--lib/compilers/default.js2
-rw-r--r--lib/compilers/fake-for-test.js2
-rw-r--r--lib/compilers/gcc.js2
-rw-r--r--lib/compilers/ldc.js2
-rw-r--r--lib/compilers/rust.js2
-rw-r--r--lib/compilers/wine-vc.js2
-rw-r--r--lib/exec.js2
-rw-r--r--lib/google.js2
-rw-r--r--lib/handlers/api.js2
-rw-r--r--lib/handlers/asm-docs-api.js2
-rw-r--r--lib/handlers/compile.js2
-rw-r--r--lib/handlers/health-check.js2
-rw-r--r--lib/handlers/source.js2
-rw-r--r--lib/logger.js2
-rw-r--r--lib/properties.js2
-rw-r--r--lib/sources/browser.js2
-rw-r--r--lib/sources/builtin.js2
-rw-r--r--lib/utils.js2
-rw-r--r--static/analytics.js2
-rw-r--r--static/colour.js2
-rw-r--r--static/compiler-service.js2
-rw-r--r--static/components.js2
-rw-r--r--static/fontscale.js2
-rw-r--r--static/hub.js2
-rw-r--r--static/load-save.js2
-rw-r--r--static/local.js2
-rw-r--r--static/main.js2
-rw-r--r--static/modes/asm-mode.js2
-rw-r--r--static/modes/cppx-gold-mode.js2
-rw-r--r--static/modes/d-mode.js2
-rw-r--r--static/modes/fortran-mode.js2
-rw-r--r--static/modes/ispc-mode.js2
-rw-r--r--static/options.js2
-rw-r--r--static/panes/compiler.js2
-rw-r--r--static/panes/diff.js2
-rw-r--r--static/panes/editor.js2
-rw-r--r--static/panes/output.js2
-rw-r--r--static/settings.js2
-rw-r--r--static/sharing.js2
-rw-r--r--static/url.js2
-rw-r--r--test/asm-tests.js2
-rw-r--r--test/aws-tests.js2
-rw-r--r--test/compilation-env.js2
-rw-r--r--test/compilers/argument-parsers-tests.js2
-rw-r--r--test/exec-tests.js2
-rw-r--r--test/filter-tests.js2
-rw-r--r--test/google-tests.js2
-rw-r--r--test/handlers/api-tests.js2
-rw-r--r--test/handlers/asm-docs-tests.js2
-rw-r--r--test/handlers/compile-tests.js2
-rw-r--r--test/handlers/health-check-tests.js2
-rw-r--r--test/handlers/source-tests.js2
-rw-r--r--test/utils-tests.js2
57 files changed, 57 insertions, 57 deletions
diff --git a/app.js b/app.js
index 354b66dd1..3f835a034 100755
--- a/app.js
+++ b/app.js
@@ -1,6 +1,6 @@
#!/usr/bin/env node
-// Copyright (c) 2012, Matt Godbolt
+// Copyright (c) 2012, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/lib/asm-parser.js b/lib/asm-parser.js
index 4eeb95f3a..7d88d7d6a 100644
--- a/lib/asm-parser.js
+++ b/lib/asm-parser.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2015, Matt Godbolt
+// Copyright (c) 2015, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/lib/aws.js b/lib/aws.js
index e50588a48..6edbdb95c 100644
--- a/lib/aws.js
+++ b/lib/aws.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2016, Matt Godbolt
+// Copyright (c) 2016, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/lib/base-compiler.js b/lib/base-compiler.js
index f14084bc5..6d2ce9fb3 100644
--- a/lib/base-compiler.js
+++ b/lib/base-compiler.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2015, Matt Godbolt
+// Copyright (c) 2015, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/lib/compilers/default.js b/lib/compilers/default.js
index 3ef32f19b..ee5481977 100644
--- a/lib/compilers/default.js
+++ b/lib/compilers/default.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2016, Matt Godbolt
+// Copyright (c) 2016, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/lib/compilers/fake-for-test.js b/lib/compilers/fake-for-test.js
index a3f7f45a7..21f67a1e2 100644
--- a/lib/compilers/fake-for-test.js
+++ b/lib/compilers/fake-for-test.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2017, Matt Godbolt
+// Copyright (c) 2017, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/lib/compilers/gcc.js b/lib/compilers/gcc.js
index 592dde321..1cba974c8 100644
--- a/lib/compilers/gcc.js
+++ b/lib/compilers/gcc.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2016, Matt Godbolt
+// Copyright (c) 2016, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/lib/compilers/ldc.js b/lib/compilers/ldc.js
index 823730572..8e27790a3 100644
--- a/lib/compilers/ldc.js
+++ b/lib/compilers/ldc.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2016, Matt Godbolt
+// Copyright (c) 2016, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/lib/compilers/rust.js b/lib/compilers/rust.js
index 936554ade..d392975b1 100644
--- a/lib/compilers/rust.js
+++ b/lib/compilers/rust.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2016, Matt Godbolt
+// Copyright (c) 2016, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/lib/compilers/wine-vc.js b/lib/compilers/wine-vc.js
index 2e77a713b..6ff139e4e 100644
--- a/lib/compilers/wine-vc.js
+++ b/lib/compilers/wine-vc.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2016, Matt Godbolt
+// Copyright (c) 2016, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/lib/exec.js b/lib/exec.js
index 9be1af82d..4565774b0 100644
--- a/lib/exec.js
+++ b/lib/exec.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2017, Matt Godbolt
+// Copyright (c) 2017, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/lib/google.js b/lib/google.js
index 79ea287e9..59f8ee8a0 100644
--- a/lib/google.js
+++ b/lib/google.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2017, Matt Godbolt
+// Copyright (c) 2017, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/lib/handlers/api.js b/lib/handlers/api.js
index 01d2498c2..af90ec325 100644
--- a/lib/handlers/api.js
+++ b/lib/handlers/api.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2017, Matt Godbolt
+// Copyright (c) 2017, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/lib/handlers/asm-docs-api.js b/lib/handlers/asm-docs-api.js
index 9139847f2..aa805abd0 100644
--- a/lib/handlers/asm-docs-api.js
+++ b/lib/handlers/asm-docs-api.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2017, Matt Godbolt
+// Copyright (c) 2017, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/lib/handlers/compile.js b/lib/handlers/compile.js
index e0fd9857d..ec99751ed 100644
--- a/lib/handlers/compile.js
+++ b/lib/handlers/compile.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2016, Matt Godbolt
+// Copyright (c) 2016, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/lib/handlers/health-check.js b/lib/handlers/health-check.js
index 42c2cd13d..f9cd771ae 100644
--- a/lib/handlers/health-check.js
+++ b/lib/handlers/health-check.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2017, Matt Godbolt
+// Copyright (c) 2017, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/lib/handlers/source.js b/lib/handlers/source.js
index 926ab008e..8e5ebfbab 100644
--- a/lib/handlers/source.js
+++ b/lib/handlers/source.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2017, Matt Godbolt
+// Copyright (c) 2017, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/lib/logger.js b/lib/logger.js
index 94193c787..5db0516d3 100644
--- a/lib/logger.js
+++ b/lib/logger.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2016, Matt Godbolt
+// Copyright (c) 2016, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/lib/properties.js b/lib/properties.js
index e2498a5f1..5065e3313 100644
--- a/lib/properties.js
+++ b/lib/properties.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2012, Matt Godbolt
+// Copyright (c) 2012, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/lib/sources/browser.js b/lib/sources/browser.js
index 403599698..d2f6fa836 100644
--- a/lib/sources/browser.js
+++ b/lib/sources/browser.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2012, Matt Godbolt
+// Copyright (c) 2012, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/lib/sources/builtin.js b/lib/sources/builtin.js
index 4b9bb2e11..ea5f6743f 100644
--- a/lib/sources/builtin.js
+++ b/lib/sources/builtin.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2012, Matt Godbolt
+// Copyright (c) 2012, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/lib/utils.js b/lib/utils.js
index c9a9328e2..3760234f4 100644
--- a/lib/utils.js
+++ b/lib/utils.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2016, Matt Godbolt
+// Copyright (c) 2016, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/static/analytics.js b/static/analytics.js
index dd25b3fb8..f04f3ef26 100644
--- a/static/analytics.js
+++ b/static/analytics.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2016, Matt Godbolt
+// Copyright (c) 2016, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/static/colour.js b/static/colour.js
index 1cdaf43a1..2f290c3de 100644
--- a/static/colour.js
+++ b/static/colour.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2016, Matt Godbolt
+// Copyright (c) 2016, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/static/compiler-service.js b/static/compiler-service.js
index 4243f1d2f..27333d055 100644
--- a/static/compiler-service.js
+++ b/static/compiler-service.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2017, Matt Godbolt
+// Copyright (c) 2017, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/static/components.js b/static/components.js
index 6bb7a286b..6864f1bf6 100644
--- a/static/components.js
+++ b/static/components.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2016, Matt Godbolt
+// Copyright (c) 2016, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/static/fontscale.js b/static/fontscale.js
index 4e42a1356..0a9d13072 100644
--- a/static/fontscale.js
+++ b/static/fontscale.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2016, Matt Godbolt
+// Copyright (c) 2016, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/static/hub.js b/static/hub.js
index 2d9636960..ac1df05e5 100644
--- a/static/hub.js
+++ b/static/hub.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2016, Matt Godbolt
+// Copyright (c) 2016, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/static/load-save.js b/static/load-save.js
index cf220ee68..5e33dae3c 100644
--- a/static/load-save.js
+++ b/static/load-save.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2016, Matt Godbolt
+// Copyright (c) 2016, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/static/local.js b/static/local.js
index 95eac901c..1f099bb2a 100644
--- a/static/local.js
+++ b/static/local.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2017, Matt Godbolt
+// Copyright (c) 2017, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/static/main.js b/static/main.js
index 865fdbc91..1dd404303 100644
--- a/static/main.js
+++ b/static/main.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2016, Matt Godbolt
+// Copyright (c) 2016, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/static/modes/asm-mode.js b/static/modes/asm-mode.js
index efbb20e46..de1af14fc 100644
--- a/static/modes/asm-mode.js
+++ b/static/modes/asm-mode.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2012, Matt Godbolt
+// Copyright (c) 2012, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/static/modes/cppx-gold-mode.js b/static/modes/cppx-gold-mode.js
index aa492e5b7..fb4ed2dc3 100644
--- a/static/modes/cppx-gold-mode.js
+++ b/static/modes/cppx-gold-mode.js
@@ -1,6 +1,6 @@
// Copyright (c) 2020, Lock3 Software LLC
// All rights reserved.
-// Originally based on `./d-mode.js` by Matt Godbolt
+// Originally based on `./d-mode.js` by the Compiler Explorer Authors
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
diff --git a/static/modes/d-mode.js b/static/modes/d-mode.js
index 93e6067c8..75d37a8a3 100644
--- a/static/modes/d-mode.js
+++ b/static/modes/d-mode.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2017, Matt Godbolt
+// Copyright (c) 2017, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/static/modes/fortran-mode.js b/static/modes/fortran-mode.js
index 3bb705eac..507231bf4 100644
--- a/static/modes/fortran-mode.js
+++ b/static/modes/fortran-mode.js
@@ -1,5 +1,5 @@
// Copyright (c) 2015, Thomas E. Dunn
-// Copyright (c) 2017, Matt Godbolt
+// Copyright (c) 2017, Compiler Explorer Authors
// Copyright (c) 2018, Forschungzentrum Juelich GmbH
// Juelich Supercomputing Centre
// All rights reserved.
diff --git a/static/modes/ispc-mode.js b/static/modes/ispc-mode.js
index f7cd8097b..452d3c232 100644
--- a/static/modes/ispc-mode.js
+++ b/static/modes/ispc-mode.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2017, Matt Godbolt
+// Copyright (c) 2017, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/static/options.js b/static/options.js
index 49c0e78a7..ac1d70a71 100644
--- a/static/options.js
+++ b/static/options.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2016, Matt Godbolt
+// Copyright (c) 2016, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/static/panes/compiler.js b/static/panes/compiler.js
index 914866e62..f2c380a23 100644
--- a/static/panes/compiler.js
+++ b/static/panes/compiler.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2012, Matt Godbolt
+// Copyright (c) 2012, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/static/panes/diff.js b/static/panes/diff.js
index dfe1b6f38..51ec8e95f 100644
--- a/static/panes/diff.js
+++ b/static/panes/diff.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2017, Matt Godbolt
+// Copyright (c) 2017, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/static/panes/editor.js b/static/panes/editor.js
index 532ed2e11..772e9564d 100644
--- a/static/panes/editor.js
+++ b/static/panes/editor.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2016, Matt Godbolt
+// Copyright (c) 2016, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/static/panes/output.js b/static/panes/output.js
index 70ed02675..fffa2d0d6 100644
--- a/static/panes/output.js
+++ b/static/panes/output.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2016, Matt Godbolt
+// Copyright (c) 2016, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/static/settings.js b/static/settings.js
index c79db3ea6..5f32b299d 100644
--- a/static/settings.js
+++ b/static/settings.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2016, Matt Godbolt
+// Copyright (c) 2016, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/static/sharing.js b/static/sharing.js
index 75bcb0431..94095c5e8 100644
--- a/static/sharing.js
+++ b/static/sharing.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2016, Matt Godbolt
+// Copyright (c) 2016, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/static/url.js b/static/url.js
index a3c60e2e1..b4e68e3df 100644
--- a/static/url.js
+++ b/static/url.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2016, Matt Godbolt
+// Copyright (c) 2016, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/test/asm-tests.js b/test/asm-tests.js
index e478baa3f..e58601bbc 100644
--- a/test/asm-tests.js
+++ b/test/asm-tests.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2018, Matt Godbolt
+// Copyright (c) 2018, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/test/aws-tests.js b/test/aws-tests.js
index db7062390..dde9e979c 100644
--- a/test/aws-tests.js
+++ b/test/aws-tests.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2017, Matt Godbolt
+// Copyright (c) 2017, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/test/compilation-env.js b/test/compilation-env.js
index a0254f018..9f959ae5d 100644
--- a/test/compilation-env.js
+++ b/test/compilation-env.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2016, Matt Godbolt
+// Copyright (c) 2016, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/test/compilers/argument-parsers-tests.js b/test/compilers/argument-parsers-tests.js
index d248eac8c..4c541d57b 100644
--- a/test/compilers/argument-parsers-tests.js
+++ b/test/compilers/argument-parsers-tests.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2017, Matt Godbolt
+// Copyright (c) 2017, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/test/exec-tests.js b/test/exec-tests.js
index df1fd1c08..76525bf25 100644
--- a/test/exec-tests.js
+++ b/test/exec-tests.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2017, Matt Godbolt
+// Copyright (c) 2017, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/test/filter-tests.js b/test/filter-tests.js
index f78ea8aaf..904e24c7c 100644
--- a/test/filter-tests.js
+++ b/test/filter-tests.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2016, Matt Godbolt
+// Copyright (c) 2016, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/test/google-tests.js b/test/google-tests.js
index 4bfb2a0bb..168ae5c78 100644
--- a/test/google-tests.js
+++ b/test/google-tests.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2017, Matt Godbolt
+// Copyright (c) 2017, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/test/handlers/api-tests.js b/test/handlers/api-tests.js
index 1d0104a4f..3adb8e3e7 100644
--- a/test/handlers/api-tests.js
+++ b/test/handlers/api-tests.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2017, Matt Godbolt
+// Copyright (c) 2017, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/test/handlers/asm-docs-tests.js b/test/handlers/asm-docs-tests.js
index aa985c6f5..f313087c2 100644
--- a/test/handlers/asm-docs-tests.js
+++ b/test/handlers/asm-docs-tests.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2017, Matt Godbolt
+// Copyright (c) 2017, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/test/handlers/compile-tests.js b/test/handlers/compile-tests.js
index b65db4cb6..2a14cbe43 100644
--- a/test/handlers/compile-tests.js
+++ b/test/handlers/compile-tests.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2017, Matt Godbolt
+// Copyright (c) 2017, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/test/handlers/health-check-tests.js b/test/handlers/health-check-tests.js
index 8b7e41516..babf69576 100644
--- a/test/handlers/health-check-tests.js
+++ b/test/handlers/health-check-tests.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2017, Matt Godbolt
+// Copyright (c) 2017, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/test/handlers/source-tests.js b/test/handlers/source-tests.js
index c47bf468d..cb972ee82 100644
--- a/test/handlers/source-tests.js
+++ b/test/handlers/source-tests.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2017, Matt Godbolt
+// Copyright (c) 2017, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/test/utils-tests.js b/test/utils-tests.js
index 92de63f06..e6c99b8d4 100644
--- a/test/utils-tests.js
+++ b/test/utils-tests.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2017, Matt Godbolt
+// Copyright (c) 2017, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without