aboutsummaryrefslogtreecommitdiff
path: root/unit-tests
diff options
context:
space:
mode:
Diffstat (limited to 'unit-tests')
-rw-r--r--unit-tests/cc/lexer/buildfile2
-rw-r--r--unit-tests/cc/lexer/char-literal.test2
-rw-r--r--unit-tests/cc/lexer/comment.test2
-rw-r--r--unit-tests/cc/lexer/driver.cxx2
-rw-r--r--unit-tests/cc/lexer/line.test2
-rw-r--r--unit-tests/cc/lexer/number.test2
-rw-r--r--unit-tests/cc/lexer/preprocessor.test2
-rw-r--r--unit-tests/cc/lexer/raw-string-literal.test2
-rw-r--r--unit-tests/cc/lexer/string-literal.test2
-rw-r--r--unit-tests/cc/parser/buildfile2
-rw-r--r--unit-tests/cc/parser/driver.cxx2
-rw-r--r--unit-tests/cc/parser/module.test2
-rw-r--r--unit-tests/function/buildfile2
-rw-r--r--unit-tests/function/call.test2
-rw-r--r--unit-tests/function/driver.cxx2
-rw-r--r--unit-tests/function/syntax.test2
-rw-r--r--unit-tests/lexer/buildfile2
-rw-r--r--unit-tests/lexer/buildspec.test2
-rw-r--r--unit-tests/lexer/comment.test2
-rw-r--r--unit-tests/lexer/driver.cxx2
-rw-r--r--unit-tests/lexer/eval.test2
-rw-r--r--unit-tests/lexer/quoting.test2
-rw-r--r--unit-tests/name/buildfile2
-rw-r--r--unit-tests/name/driver.cxx2
-rw-r--r--unit-tests/scheduler/buildfile2
-rw-r--r--unit-tests/scheduler/driver.cxx2
-rw-r--r--unit-tests/test/script/lexer/buildfile2
-rw-r--r--unit-tests/test/script/lexer/command-expansion.test2
-rw-r--r--unit-tests/test/script/lexer/command-line.test2
-rw-r--r--unit-tests/test/script/lexer/description-line.test2
-rw-r--r--unit-tests/test/script/lexer/driver.cxx2
-rw-r--r--unit-tests/test/script/lexer/first-token.test2
-rw-r--r--unit-tests/test/script/lexer/second-token.test2
-rw-r--r--unit-tests/test/script/lexer/variable-line.test2
-rw-r--r--unit-tests/test/script/lexer/variable.test2
-rw-r--r--unit-tests/test/script/parser/buildfile2
-rw-r--r--unit-tests/test/script/parser/cleanup.test2
-rw-r--r--unit-tests/test/script/parser/command-if.test2
-rw-r--r--unit-tests/test/script/parser/command-re-parse.test2
-rw-r--r--unit-tests/test/script/parser/description.test2
-rw-r--r--unit-tests/test/script/parser/directive.test2
-rw-r--r--unit-tests/test/script/parser/driver.cxx2
-rw-r--r--unit-tests/test/script/parser/exit.test2
-rw-r--r--unit-tests/test/script/parser/expansion.test2
-rw-r--r--unit-tests/test/script/parser/here-document.test2
-rw-r--r--unit-tests/test/script/parser/here-string.test2
-rw-r--r--unit-tests/test/script/parser/include.test2
-rw-r--r--unit-tests/test/script/parser/pipe-expr.test2
-rw-r--r--unit-tests/test/script/parser/pre-parse.test2
-rw-r--r--unit-tests/test/script/parser/redirect.test2
-rw-r--r--unit-tests/test/script/parser/regex.test2
-rw-r--r--unit-tests/test/script/parser/scope-if.test2
-rw-r--r--unit-tests/test/script/parser/scope.test2
-rw-r--r--unit-tests/test/script/parser/setup-teardown.test2
-rw-r--r--unit-tests/test/script/regex/buildfile2
-rw-r--r--unit-tests/test/script/regex/driver.cxx2
56 files changed, 56 insertions, 56 deletions
diff --git a/unit-tests/cc/lexer/buildfile b/unit-tests/cc/lexer/buildfile
index 8c20552..bf7c1c5 100644
--- a/unit-tests/cc/lexer/buildfile
+++ b/unit-tests/cc/lexer/buildfile
@@ -1,5 +1,5 @@
# file : unit-tests/cc/lexer/buildfile
-# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
include ../../../build2/
diff --git a/unit-tests/cc/lexer/char-literal.test b/unit-tests/cc/lexer/char-literal.test
index f2c6249..6253096 100644
--- a/unit-tests/cc/lexer/char-literal.test
+++ b/unit-tests/cc/lexer/char-literal.test
@@ -1,5 +1,5 @@
# file : unit-tests/cc/lexer/char-literal.test
-# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
# Test character literals.
diff --git a/unit-tests/cc/lexer/comment.test b/unit-tests/cc/lexer/comment.test
index e90d8e0..2b5d81e 100644
--- a/unit-tests/cc/lexer/comment.test
+++ b/unit-tests/cc/lexer/comment.test
@@ -1,5 +1,5 @@
# file : unit-tests/cc/lexer/comment.test
-# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
# Test C and C++ comments.
diff --git a/unit-tests/cc/lexer/driver.cxx b/unit-tests/cc/lexer/driver.cxx
index 53910a6..3314a38 100644
--- a/unit-tests/cc/lexer/driver.cxx
+++ b/unit-tests/cc/lexer/driver.cxx
@@ -1,5 +1,5 @@
// file : unit-tests/cc/lexer/driver.cxx -*- C++ -*-
-// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+// copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
#include <cassert>
diff --git a/unit-tests/cc/lexer/line.test b/unit-tests/cc/lexer/line.test
index 9eda9c3..83ebbeb 100644
--- a/unit-tests/cc/lexer/line.test
+++ b/unit-tests/cc/lexer/line.test
@@ -1,5 +1,5 @@
# file : unit-tests/cc/lexer/line.test
-# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
# Test line continuations.
diff --git a/unit-tests/cc/lexer/number.test b/unit-tests/cc/lexer/number.test
index 1d9b9c5..7336037 100644
--- a/unit-tests/cc/lexer/number.test
+++ b/unit-tests/cc/lexer/number.test
@@ -1,5 +1,5 @@
# file : unit-tests/cc/lexer/number.test
-# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
# Test numbers.
diff --git a/unit-tests/cc/lexer/preprocessor.test b/unit-tests/cc/lexer/preprocessor.test
index 13b8baf..fbe578d 100644
--- a/unit-tests/cc/lexer/preprocessor.test
+++ b/unit-tests/cc/lexer/preprocessor.test
@@ -1,5 +1,5 @@
# file : unit-tests/cc/lexer/preprocessor.test
-# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
# Test preprocessor lines.
diff --git a/unit-tests/cc/lexer/raw-string-literal.test b/unit-tests/cc/lexer/raw-string-literal.test
index 7d5b920..09b54b5 100644
--- a/unit-tests/cc/lexer/raw-string-literal.test
+++ b/unit-tests/cc/lexer/raw-string-literal.test
@@ -1,5 +1,5 @@
# file : unit-tests/cc/lexer/raw-string-literal.test
-# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
# Test raw string literals.
diff --git a/unit-tests/cc/lexer/string-literal.test b/unit-tests/cc/lexer/string-literal.test
index f726c76..b21b1d2 100644
--- a/unit-tests/cc/lexer/string-literal.test
+++ b/unit-tests/cc/lexer/string-literal.test
@@ -1,5 +1,5 @@
# file : unit-tests/cc/lexer/string-literal.test
-# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
# Test string literals (except raw).
diff --git a/unit-tests/cc/parser/buildfile b/unit-tests/cc/parser/buildfile
index 0c04bb1..c01c1c0 100644
--- a/unit-tests/cc/parser/buildfile
+++ b/unit-tests/cc/parser/buildfile
@@ -1,5 +1,5 @@
# file : unit-tests/cc/parser/buildfile
-# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
include ../../../build2/
diff --git a/unit-tests/cc/parser/driver.cxx b/unit-tests/cc/parser/driver.cxx
index 19d85e8..7332b2d 100644
--- a/unit-tests/cc/parser/driver.cxx
+++ b/unit-tests/cc/parser/driver.cxx
@@ -1,5 +1,5 @@
// file : unit-tests/cc/parser/driver.cxx -*- C++ -*-
-// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+// copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
#include <cassert>
diff --git a/unit-tests/cc/parser/module.test b/unit-tests/cc/parser/module.test
index 45e621c..e1f9b0c 100644
--- a/unit-tests/cc/parser/module.test
+++ b/unit-tests/cc/parser/module.test
@@ -1,5 +1,5 @@
# file : unit-tests/cc/parser/module.test
-# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
# Test C++ module constructs.
diff --git a/unit-tests/function/buildfile b/unit-tests/function/buildfile
index 38f541a..a3eb72f 100644
--- a/unit-tests/function/buildfile
+++ b/unit-tests/function/buildfile
@@ -1,5 +1,5 @@
# file : unit-tests/function/buildfile
-# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
include ../../build2/
diff --git a/unit-tests/function/call.test b/unit-tests/function/call.test
index e17c247..127af24 100644
--- a/unit-tests/function/call.test
+++ b/unit-tests/function/call.test
@@ -1,5 +1,5 @@
# file : unit-tests/function/call.test
-# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
: qual-implicit
diff --git a/unit-tests/function/driver.cxx b/unit-tests/function/driver.cxx
index 627f76a..e97596a 100644
--- a/unit-tests/function/driver.cxx
+++ b/unit-tests/function/driver.cxx
@@ -1,5 +1,5 @@
// file : unit-tests/function/driver.cxx -*- C++ -*-
-// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+// copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
#include <iostream>
diff --git a/unit-tests/function/syntax.test b/unit-tests/function/syntax.test
index bce00e7..4620e6a 100644
--- a/unit-tests/function/syntax.test
+++ b/unit-tests/function/syntax.test
@@ -1,5 +1,5 @@
# file : unit-tests/function/syntax.test
-# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
$* <'$dump()' >:'' : none
diff --git a/unit-tests/lexer/buildfile b/unit-tests/lexer/buildfile
index 6df2a72..2e14979 100644
--- a/unit-tests/lexer/buildfile
+++ b/unit-tests/lexer/buildfile
@@ -1,5 +1,5 @@
# file : unit-tests/lexer/buildfile
-# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
include ../../build2/
diff --git a/unit-tests/lexer/buildspec.test b/unit-tests/lexer/buildspec.test
index 81eeb00..9aa0f55 100644
--- a/unit-tests/lexer/buildspec.test
+++ b/unit-tests/lexer/buildspec.test
@@ -1,5 +1,5 @@
# file : unit-tests/lexer/buildspec.test
-# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
test.arguments = buildspec
diff --git a/unit-tests/lexer/comment.test b/unit-tests/lexer/comment.test
index 6840219..8e0ef2e 100644
--- a/unit-tests/lexer/comment.test
+++ b/unit-tests/lexer/comment.test
@@ -1,5 +1,5 @@
# file : unit-tests/lexer/comment.test
-# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
: single-line
diff --git a/unit-tests/lexer/driver.cxx b/unit-tests/lexer/driver.cxx
index 5bbefb9..4e6a47d 100644
--- a/unit-tests/lexer/driver.cxx
+++ b/unit-tests/lexer/driver.cxx
@@ -1,5 +1,5 @@
// file : unit-tests/lexer/driver.cxx -*- C++ -*-
-// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+// copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
#include <cassert>
diff --git a/unit-tests/lexer/eval.test b/unit-tests/lexer/eval.test
index a377cf5..4bd33c4 100644
--- a/unit-tests/lexer/eval.test
+++ b/unit-tests/lexer/eval.test
@@ -1,5 +1,5 @@
# file : unit-tests/lexer/eval.test
-# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
test.arguments = eval
diff --git a/unit-tests/lexer/quoting.test b/unit-tests/lexer/quoting.test
index a44d6af..708e904 100644
--- a/unit-tests/lexer/quoting.test
+++ b/unit-tests/lexer/quoting.test
@@ -1,5 +1,5 @@
# file : unit-tests/lexer/quoting.test
-# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
test.options += -q
diff --git a/unit-tests/name/buildfile b/unit-tests/name/buildfile
index 84f22c4..f484571 100644
--- a/unit-tests/name/buildfile
+++ b/unit-tests/name/buildfile
@@ -1,5 +1,5 @@
# file : unit-tests/name/buildfile
-# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
include ../../build2/
diff --git a/unit-tests/name/driver.cxx b/unit-tests/name/driver.cxx
index 57d9c3c..e5d2155 100644
--- a/unit-tests/name/driver.cxx
+++ b/unit-tests/name/driver.cxx
@@ -1,5 +1,5 @@
// file : unit-tests/name/driver.cxx -*- C++ -*-
-// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+// copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
#include <sstream>
diff --git a/unit-tests/scheduler/buildfile b/unit-tests/scheduler/buildfile
index 81c077b..ef8a259 100644
--- a/unit-tests/scheduler/buildfile
+++ b/unit-tests/scheduler/buildfile
@@ -1,5 +1,5 @@
# file : unit-tests/scheduler/buildfile
-# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
include ../../build2/
diff --git a/unit-tests/scheduler/driver.cxx b/unit-tests/scheduler/driver.cxx
index 783ddc9..a966127 100644
--- a/unit-tests/scheduler/driver.cxx
+++ b/unit-tests/scheduler/driver.cxx
@@ -1,5 +1,5 @@
// file : unit-tests/scheduler/driver.cxx -*- C++ -*-
-// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+// copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
#include <chrono>
diff --git a/unit-tests/test/script/lexer/buildfile b/unit-tests/test/script/lexer/buildfile
index 8cb284c..34c5d9f 100644
--- a/unit-tests/test/script/lexer/buildfile
+++ b/unit-tests/test/script/lexer/buildfile
@@ -1,5 +1,5 @@
# file : unit-tests/test/script/lexer/buildfile
-# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
include ../../../../build2/
diff --git a/unit-tests/test/script/lexer/command-expansion.test b/unit-tests/test/script/lexer/command-expansion.test
index ffbb944..88d7ced 100644
--- a/unit-tests/test/script/lexer/command-expansion.test
+++ b/unit-tests/test/script/lexer/command-expansion.test
@@ -1,5 +1,5 @@
# file : unit-tests/test/script/lexer/command-expansion.test
-# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
test.arguments = command-expansion
diff --git a/unit-tests/test/script/lexer/command-line.test b/unit-tests/test/script/lexer/command-line.test
index adc8cd1..0b396b8 100644
--- a/unit-tests/test/script/lexer/command-line.test
+++ b/unit-tests/test/script/lexer/command-line.test
@@ -1,5 +1,5 @@
# file : unit-tests/test/script/lexer/command-line.test
-# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
test.arguments = command-line
diff --git a/unit-tests/test/script/lexer/description-line.test b/unit-tests/test/script/lexer/description-line.test
index 6b160c0..5f2ea13 100644
--- a/unit-tests/test/script/lexer/description-line.test
+++ b/unit-tests/test/script/lexer/description-line.test
@@ -1,5 +1,5 @@
# file : unit-tests/test/script/lexer/description-line.test
-# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
test.arguments = description-line
diff --git a/unit-tests/test/script/lexer/driver.cxx b/unit-tests/test/script/lexer/driver.cxx
index 9ff393b..ecce3eb 100644
--- a/unit-tests/test/script/lexer/driver.cxx
+++ b/unit-tests/test/script/lexer/driver.cxx
@@ -1,5 +1,5 @@
// file : unit-tests/test/script/lexer/driver.cxx -*- C++ -*-
-// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+// copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
#include <cassert>
diff --git a/unit-tests/test/script/lexer/first-token.test b/unit-tests/test/script/lexer/first-token.test
index 6044f53..d754d69 100644
--- a/unit-tests/test/script/lexer/first-token.test
+++ b/unit-tests/test/script/lexer/first-token.test
@@ -1,5 +1,5 @@
# file : unit-tests/test/script/lexer/first-token.test
-# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
# Note: this mode auto-expires after each token.
diff --git a/unit-tests/test/script/lexer/second-token.test b/unit-tests/test/script/lexer/second-token.test
index 94ea441..8b3f452 100644
--- a/unit-tests/test/script/lexer/second-token.test
+++ b/unit-tests/test/script/lexer/second-token.test
@@ -1,5 +1,5 @@
# file : unit-tests/test/script/lexer/second-token.test
-# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
# Note: this mode auto-expires after each token.
diff --git a/unit-tests/test/script/lexer/variable-line.test b/unit-tests/test/script/lexer/variable-line.test
index c97981d..68d3a71 100644
--- a/unit-tests/test/script/lexer/variable-line.test
+++ b/unit-tests/test/script/lexer/variable-line.test
@@ -1,5 +1,5 @@
# file : unit-tests/test/script/lexer/variable-line.test
-# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
test.arguments = variable-line
diff --git a/unit-tests/test/script/lexer/variable.test b/unit-tests/test/script/lexer/variable.test
index 15458f5..60106ab 100644
--- a/unit-tests/test/script/lexer/variable.test
+++ b/unit-tests/test/script/lexer/variable.test
@@ -1,5 +1,5 @@
# file : unit-tests/test/script/lexer/variable.test
-# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
# Test handling custom variable names ($*, $~, $NN).
diff --git a/unit-tests/test/script/parser/buildfile b/unit-tests/test/script/parser/buildfile
index ea76bcd..ee0e26d 100644
--- a/unit-tests/test/script/parser/buildfile
+++ b/unit-tests/test/script/parser/buildfile
@@ -1,5 +1,5 @@
# file : unit-tests/test/script/parser/buildfile
-# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
include ../../../../build2/
diff --git a/unit-tests/test/script/parser/cleanup.test b/unit-tests/test/script/parser/cleanup.test
index ac4d949..1b43c90 100644
--- a/unit-tests/test/script/parser/cleanup.test
+++ b/unit-tests/test/script/parser/cleanup.test
@@ -1,5 +1,5 @@
# file : unit-tests/test/script/parser/cleanup.test
-# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
: always
diff --git a/unit-tests/test/script/parser/command-if.test b/unit-tests/test/script/parser/command-if.test
index 29d1dce..4936553 100644
--- a/unit-tests/test/script/parser/command-if.test
+++ b/unit-tests/test/script/parser/command-if.test
@@ -1,5 +1,5 @@
# file : unit-tests/test/script/parser/command-if.test
-# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
: if
diff --git a/unit-tests/test/script/parser/command-re-parse.test b/unit-tests/test/script/parser/command-re-parse.test
index 657bf88..a6ef6d3 100644
--- a/unit-tests/test/script/parser/command-re-parse.test
+++ b/unit-tests/test/script/parser/command-re-parse.test
@@ -1,5 +1,5 @@
# file : unit-tests/test/script/parser/command-re-parse.test
-# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
: double-quote
diff --git a/unit-tests/test/script/parser/description.test b/unit-tests/test/script/parser/description.test
index 3e2bb7f..e651a4a 100644
--- a/unit-tests/test/script/parser/description.test
+++ b/unit-tests/test/script/parser/description.test
@@ -1,5 +1,5 @@
# file : unit-tests/test/script/parser/description.test
-# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
: id
diff --git a/unit-tests/test/script/parser/directive.test b/unit-tests/test/script/parser/directive.test
index 39bd666..66bae0d 100644
--- a/unit-tests/test/script/parser/directive.test
+++ b/unit-tests/test/script/parser/directive.test
@@ -1,5 +1,5 @@
# file : unit-tests/test/script/parser/directive.test
-# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
: not-directive
diff --git a/unit-tests/test/script/parser/driver.cxx b/unit-tests/test/script/parser/driver.cxx
index f6c8f7f..b59b572 100644
--- a/unit-tests/test/script/parser/driver.cxx
+++ b/unit-tests/test/script/parser/driver.cxx
@@ -1,5 +1,5 @@
// file : unit-tests/test/script/parser/driver.cxx -*- C++ -*-
-// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+// copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
#include <cassert>
diff --git a/unit-tests/test/script/parser/exit.test b/unit-tests/test/script/parser/exit.test
index 9a4f9dc..3c796f1 100644
--- a/unit-tests/test/script/parser/exit.test
+++ b/unit-tests/test/script/parser/exit.test
@@ -1,5 +1,5 @@
# file : unit-tests/test/script/parser/exit.test
-# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
: eq
diff --git a/unit-tests/test/script/parser/expansion.test b/unit-tests/test/script/parser/expansion.test
index 0f17f64..e161c2c 100644
--- a/unit-tests/test/script/parser/expansion.test
+++ b/unit-tests/test/script/parser/expansion.test
@@ -1,5 +1,5 @@
# file : unit-tests/test/script/parser/expansion.test
-# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
: quote
diff --git a/unit-tests/test/script/parser/here-document.test b/unit-tests/test/script/parser/here-document.test
index b32961c..9aebed4 100644
--- a/unit-tests/test/script/parser/here-document.test
+++ b/unit-tests/test/script/parser/here-document.test
@@ -1,5 +1,5 @@
# file : unit-tests/test/script/parser/here-document.test
-# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
: end-marker
diff --git a/unit-tests/test/script/parser/here-string.test b/unit-tests/test/script/parser/here-string.test
index ab16779..f5e3c94 100644
--- a/unit-tests/test/script/parser/here-string.test
+++ b/unit-tests/test/script/parser/here-string.test
@@ -1,5 +1,5 @@
# file : unit-tests/test/script/parser/here-string.test
-# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
: empty
diff --git a/unit-tests/test/script/parser/include.test b/unit-tests/test/script/parser/include.test
index 0559716..99e17de 100644
--- a/unit-tests/test/script/parser/include.test
+++ b/unit-tests/test/script/parser/include.test
@@ -1,5 +1,5 @@
# file : unit-tests/test/script/parser/include.test
-# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
: none
diff --git a/unit-tests/test/script/parser/pipe-expr.test b/unit-tests/test/script/parser/pipe-expr.test
index d789f56..3b06da3 100644
--- a/unit-tests/test/script/parser/pipe-expr.test
+++ b/unit-tests/test/script/parser/pipe-expr.test
@@ -1,5 +1,5 @@
# file : unit-tests/test/script/parser/pipe-expr.test
-# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
: pipe
diff --git a/unit-tests/test/script/parser/pre-parse.test b/unit-tests/test/script/parser/pre-parse.test
index d2ae7ce..b1f4209 100644
--- a/unit-tests/test/script/parser/pre-parse.test
+++ b/unit-tests/test/script/parser/pre-parse.test
@@ -1,5 +1,5 @@
# file : unit-tests/test/script/parser/pre-parse.test
-# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
: attribute
diff --git a/unit-tests/test/script/parser/redirect.test b/unit-tests/test/script/parser/redirect.test
index 4fc3a9d..766d6cc 100644
--- a/unit-tests/test/script/parser/redirect.test
+++ b/unit-tests/test/script/parser/redirect.test
@@ -1,5 +1,5 @@
# file : unit-tests/test/script/parser/redirect.test
-# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
# @@ Add tests for redirects other than trace, here-*, file and merge.
diff --git a/unit-tests/test/script/parser/regex.test b/unit-tests/test/script/parser/regex.test
index 058a5bc..d8ebb68 100644
--- a/unit-tests/test/script/parser/regex.test
+++ b/unit-tests/test/script/parser/regex.test
@@ -1,5 +1,5 @@
# file : unit-tests/test/script/parser/regex.test
-# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
: here-string
diff --git a/unit-tests/test/script/parser/scope-if.test b/unit-tests/test/script/parser/scope-if.test
index 2867107..c0cf6fb 100644
--- a/unit-tests/test/script/parser/scope-if.test
+++ b/unit-tests/test/script/parser/scope-if.test
@@ -1,5 +1,5 @@
# file : unit-tests/test/script/parser/scope-if.test
-# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
: if
diff --git a/unit-tests/test/script/parser/scope.test b/unit-tests/test/script/parser/scope.test
index 437a3dc..21a6f50 100644
--- a/unit-tests/test/script/parser/scope.test
+++ b/unit-tests/test/script/parser/scope.test
@@ -1,5 +1,5 @@
# file : unit-tests/test/script/parser/scope.test
-# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
$* testscript <'cmd $@' >"cmd 1" : id-testscript
diff --git a/unit-tests/test/script/parser/setup-teardown.test b/unit-tests/test/script/parser/setup-teardown.test
index 6711442..f9cbb04 100644
--- a/unit-tests/test/script/parser/setup-teardown.test
+++ b/unit-tests/test/script/parser/setup-teardown.test
@@ -1,5 +1,5 @@
# file : unit-tests/test/script/parser/setup-teardown.test
-# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
: setup
diff --git a/unit-tests/test/script/regex/buildfile b/unit-tests/test/script/regex/buildfile
index 217ff70..87c10eb 100644
--- a/unit-tests/test/script/regex/buildfile
+++ b/unit-tests/test/script/regex/buildfile
@@ -1,5 +1,5 @@
# file : unit-tests/test/script/regex/buildfile
-# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
include ../../../../build2/
diff --git a/unit-tests/test/script/regex/driver.cxx b/unit-tests/test/script/regex/driver.cxx
index fd35f2a..8696da6 100644
--- a/unit-tests/test/script/regex/driver.cxx
+++ b/unit-tests/test/script/regex/driver.cxx
@@ -1,5 +1,5 @@
// file : unit-tests/test/script/regex/driver.cxx -*- C++ -*-
-// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
+// copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
#include <regex>