summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorTeemu Kaukoranta <[email protected]>2013-05-22 11:36:32 +0300
committerSergio Ahumada <[email protected]>2013-05-23 11:48:05 +0200
commit9a01357dcb7d9d3810ae3d348661cad5fc37ea77 (patch)
tree6e665578329a4a682154c52757ea0c671826f38b /tests
parent332dcaed490da5d35cdc01d038a88811e0cae9ee (diff)
Replaced Nokia copyrights in headerHEADmaster
Replaced old Nokia copyrights with Digia copyrights. "All rights reserved" strings without leading copyrights were removed (for example, 'Copyright SomeCompany, all rights reserved remain untouched). Did NOT touch contact details, will change them later. Excluded folders that have '3rdparty' in path. Used command: find . -path '*/3rdparty/*' -prune -o -exec grep -ilI -E '.*Copyright.*Nokia.*' {} \; | tee >(xargs sed -i -r '1,10 s/([ \t#*]*)(.*Copyright.*Nokia.*)/ \1Copyright \(C\) 2013 Digia Plc and\/or its subsidiary\(-ies\)\./I') >(xargs sed -i -r '1,10 s/(^[ \t#*]*)(all rights reserved.*)/\1/I') This excludes binary files and retains whitespace and #* characters in the beginning of the edited lines. Change-Id: Id2964f565a94fe8c1c47db140bc38c96ca89c0f0 Reviewed-by: Janne Anttila <[email protected]> Reviewed-by: Sergio Ahumada <[email protected]>
Diffstat (limited to 'tests')
-rw-r--r--tests/AllTests.qml2
-rw-r--r--tests/InterpreterTests.qml2
-rw-r--r--tests/MyConfig.qml2
-rw-r--r--tests/RemoteTests.qml2
-rw-r--r--tests/interpreter/CoreTests.qml2
-rw-r--r--tests/interpreter/RunnerTests.qml2
-rw-r--r--tests/interpreter/core/ApplicationRegistryTests.qml2
-rw-r--r--tests/interpreter/core/ClassTest.qml2
-rw-r--r--tests/interpreter/core/ExpectApiTests.qml2
-rw-r--r--tests/interpreter/core/FailApiTest.qml2
-rw-r--r--tests/interpreter/core/ItemHandlerTests.qml2
-rw-r--r--tests/interpreter/core/LocalProcessTest.qml2
-rw-r--r--tests/interpreter/core/SleepTest.qml2
-rw-r--r--tests/interpreter/core/application/CustomApplicationTest.qml2
-rw-r--r--tests/interpreter/core/application/DefaultApplicationTest.qml2
-rw-r--r--tests/interpreter/core/application/MyApplication.js2
-rw-r--r--tests/interpreter/core/application/MyApplication.qml2
-rw-r--r--tests/interpreter/core/application/RegisterUnregisterAppTest.qml2
-rw-r--r--tests/interpreter/core/itemhandlers/CustomItemHandlerTest.qml2
-rw-r--r--tests/interpreter/core/itemhandlers/DefaultItemHandlerTest.qml2
-rw-r--r--tests/interpreter/core/itemhandlers/QstPushButton.qml2
-rw-r--r--tests/interpreter/core/itemhandlers/RegisterUnregisterHandlerTest.qml2
-rw-r--r--tests/interpreter/loggers/data/ExpectTests.qml2
-rw-r--r--tests/interpreter/loggers/data/FailTest.qml2
-rw-r--r--tests/interpreter/loggers/data/PassTest.qml2
-rw-r--r--tests/interpreter/loggers/data/SkipTest.qml2
-rw-r--r--tests/interpreter/loggers/data/SubTests.qml2
-rw-r--r--tests/interpreter/loggers/data/Tests.qml2
-rw-r--r--tests/interpreter/loggers/data/qsystemtest.xsd2
-rw-r--r--tests/interpreter/runner/DefaultConfigTest.qml2
-rw-r--r--tests/interpreter/runner/EmptyTest.qml2
-rw-r--r--tests/interpreter/runner/EmptyTests.qml2
-rw-r--r--tests/interpreter/runner/FailTest.qml2
-rw-r--r--tests/interpreter/runner/MyUtils.js2
-rw-r--r--tests/interpreter/runner/RunnerInternals.js2
-rw-r--r--tests/interpreter/runner/SkipTest.qml2
-rw-r--r--tests/interpreter/runner/UntestedTest.qml2
-rw-r--r--tests/interpreter/runner/UntestedTests.qml2
-rw-r--r--tests/remote/AssistantTest.qml2
-rw-r--r--tests/remote/QstObjectApiTests.qml2
-rw-r--r--tests/remote/RemoteApiTests.qml2
-rw-r--r--tests/remote/RunProcessTests.qml2
-rw-r--r--tests/remote/TestAppWidgetTest.qml2
-rw-r--r--tests/remote/common/ApplicationTest.qml2
-rw-r--r--tests/remote/qstobject/InheritanceBasedItemHandlerTest.qml2
-rw-r--r--tests/remote/qstobject/ItemPropertyTest.qml2
-rw-r--r--tests/remote/qstobject/MyQLineEdit.qml2
-rw-r--r--tests/remote/qstobject/ParentApiTest.qml2
-rw-r--r--tests/remote/qstobject/QstObjectApiTests.qml2
-rw-r--r--tests/remote/runProcess/RunCommandTest.qml2
50 files changed, 50 insertions, 50 deletions
diff --git a/tests/AllTests.qml b/tests/AllTests.qml
index 3b36d7d..f47a42d 100644
--- a/tests/AllTests.qml
+++ b/tests/AllTests.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/InterpreterTests.qml b/tests/InterpreterTests.qml
index d91ccba..01bbace 100644
--- a/tests/InterpreterTests.qml
+++ b/tests/InterpreterTests.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/MyConfig.qml b/tests/MyConfig.qml
index cbcccf5..6ab73b9 100644
--- a/tests/MyConfig.qml
+++ b/tests/MyConfig.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/RemoteTests.qml b/tests/RemoteTests.qml
index a95a2e3..4e0c21e 100644
--- a/tests/RemoteTests.qml
+++ b/tests/RemoteTests.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/interpreter/CoreTests.qml b/tests/interpreter/CoreTests.qml
index eb3b4a6..1f266da 100644
--- a/tests/interpreter/CoreTests.qml
+++ b/tests/interpreter/CoreTests.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/interpreter/RunnerTests.qml b/tests/interpreter/RunnerTests.qml
index 0b8458a..775a8d4 100644
--- a/tests/interpreter/RunnerTests.qml
+++ b/tests/interpreter/RunnerTests.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/interpreter/core/ApplicationRegistryTests.qml b/tests/interpreter/core/ApplicationRegistryTests.qml
index fbbfad6..1f872b0 100644
--- a/tests/interpreter/core/ApplicationRegistryTests.qml
+++ b/tests/interpreter/core/ApplicationRegistryTests.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/interpreter/core/ClassTest.qml b/tests/interpreter/core/ClassTest.qml
index c2fb84d..4165331 100644
--- a/tests/interpreter/core/ClassTest.qml
+++ b/tests/interpreter/core/ClassTest.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/interpreter/core/ExpectApiTests.qml b/tests/interpreter/core/ExpectApiTests.qml
index 3fc06e7..e57649d 100644
--- a/tests/interpreter/core/ExpectApiTests.qml
+++ b/tests/interpreter/core/ExpectApiTests.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/interpreter/core/FailApiTest.qml b/tests/interpreter/core/FailApiTest.qml
index ddd0620..129c22c 100644
--- a/tests/interpreter/core/FailApiTest.qml
+++ b/tests/interpreter/core/FailApiTest.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/interpreter/core/ItemHandlerTests.qml b/tests/interpreter/core/ItemHandlerTests.qml
index 01b3a39..fce2280 100644
--- a/tests/interpreter/core/ItemHandlerTests.qml
+++ b/tests/interpreter/core/ItemHandlerTests.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/interpreter/core/LocalProcessTest.qml b/tests/interpreter/core/LocalProcessTest.qml
index 8f70925..5617592 100644
--- a/tests/interpreter/core/LocalProcessTest.qml
+++ b/tests/interpreter/core/LocalProcessTest.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/interpreter/core/SleepTest.qml b/tests/interpreter/core/SleepTest.qml
index cbd2053..c8348d4 100644
--- a/tests/interpreter/core/SleepTest.qml
+++ b/tests/interpreter/core/SleepTest.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/interpreter/core/application/CustomApplicationTest.qml b/tests/interpreter/core/application/CustomApplicationTest.qml
index d015548..f72d6b3 100644
--- a/tests/interpreter/core/application/CustomApplicationTest.qml
+++ b/tests/interpreter/core/application/CustomApplicationTest.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/interpreter/core/application/DefaultApplicationTest.qml b/tests/interpreter/core/application/DefaultApplicationTest.qml
index 8d2e31c..7fb756a 100644
--- a/tests/interpreter/core/application/DefaultApplicationTest.qml
+++ b/tests/interpreter/core/application/DefaultApplicationTest.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/interpreter/core/application/MyApplication.js b/tests/interpreter/core/application/MyApplication.js
index f05eb64..1ecfd56 100644
--- a/tests/interpreter/core/application/MyApplication.js
+++ b/tests/interpreter/core/application/MyApplication.js
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/interpreter/core/application/MyApplication.qml b/tests/interpreter/core/application/MyApplication.qml
index 65c2130..1056396 100644
--- a/tests/interpreter/core/application/MyApplication.qml
+++ b/tests/interpreter/core/application/MyApplication.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/interpreter/core/application/RegisterUnregisterAppTest.qml b/tests/interpreter/core/application/RegisterUnregisterAppTest.qml
index 473eccf..b4ce96f 100644
--- a/tests/interpreter/core/application/RegisterUnregisterAppTest.qml
+++ b/tests/interpreter/core/application/RegisterUnregisterAppTest.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/interpreter/core/itemhandlers/CustomItemHandlerTest.qml b/tests/interpreter/core/itemhandlers/CustomItemHandlerTest.qml
index 62669e7..3cbf112 100644
--- a/tests/interpreter/core/itemhandlers/CustomItemHandlerTest.qml
+++ b/tests/interpreter/core/itemhandlers/CustomItemHandlerTest.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/interpreter/core/itemhandlers/DefaultItemHandlerTest.qml b/tests/interpreter/core/itemhandlers/DefaultItemHandlerTest.qml
index 1212053..d11401f 100644
--- a/tests/interpreter/core/itemhandlers/DefaultItemHandlerTest.qml
+++ b/tests/interpreter/core/itemhandlers/DefaultItemHandlerTest.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/interpreter/core/itemhandlers/QstPushButton.qml b/tests/interpreter/core/itemhandlers/QstPushButton.qml
index ab2206c..0ffb510 100644
--- a/tests/interpreter/core/itemhandlers/QstPushButton.qml
+++ b/tests/interpreter/core/itemhandlers/QstPushButton.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/interpreter/core/itemhandlers/RegisterUnregisterHandlerTest.qml b/tests/interpreter/core/itemhandlers/RegisterUnregisterHandlerTest.qml
index d036ea1..0207cc1 100644
--- a/tests/interpreter/core/itemhandlers/RegisterUnregisterHandlerTest.qml
+++ b/tests/interpreter/core/itemhandlers/RegisterUnregisterHandlerTest.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/interpreter/loggers/data/ExpectTests.qml b/tests/interpreter/loggers/data/ExpectTests.qml
index ca93e90..9143010 100644
--- a/tests/interpreter/loggers/data/ExpectTests.qml
+++ b/tests/interpreter/loggers/data/ExpectTests.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/interpreter/loggers/data/FailTest.qml b/tests/interpreter/loggers/data/FailTest.qml
index 6d2785d..df69f3e 100644
--- a/tests/interpreter/loggers/data/FailTest.qml
+++ b/tests/interpreter/loggers/data/FailTest.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/interpreter/loggers/data/PassTest.qml b/tests/interpreter/loggers/data/PassTest.qml
index 5764718..bced94c 100644
--- a/tests/interpreter/loggers/data/PassTest.qml
+++ b/tests/interpreter/loggers/data/PassTest.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/interpreter/loggers/data/SkipTest.qml b/tests/interpreter/loggers/data/SkipTest.qml
index 7c515b7..b18f421 100644
--- a/tests/interpreter/loggers/data/SkipTest.qml
+++ b/tests/interpreter/loggers/data/SkipTest.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/interpreter/loggers/data/SubTests.qml b/tests/interpreter/loggers/data/SubTests.qml
index 1f9969b..09ba91c 100644
--- a/tests/interpreter/loggers/data/SubTests.qml
+++ b/tests/interpreter/loggers/data/SubTests.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/interpreter/loggers/data/Tests.qml b/tests/interpreter/loggers/data/Tests.qml
index 02e3c85..0ec9929 100644
--- a/tests/interpreter/loggers/data/Tests.qml
+++ b/tests/interpreter/loggers/data/Tests.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/interpreter/loggers/data/qsystemtest.xsd b/tests/interpreter/loggers/data/qsystemtest.xsd
index e385ee1..e9c94f8 100644
--- a/tests/interpreter/loggers/data/qsystemtest.xsd
+++ b/tests/interpreter/loggers/data/qsystemtest.xsd
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/interpreter/runner/DefaultConfigTest.qml b/tests/interpreter/runner/DefaultConfigTest.qml
index 54ef17e..95288d7 100644
--- a/tests/interpreter/runner/DefaultConfigTest.qml
+++ b/tests/interpreter/runner/DefaultConfigTest.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/interpreter/runner/EmptyTest.qml b/tests/interpreter/runner/EmptyTest.qml
index ef90628..4e1a030 100644
--- a/tests/interpreter/runner/EmptyTest.qml
+++ b/tests/interpreter/runner/EmptyTest.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/interpreter/runner/EmptyTests.qml b/tests/interpreter/runner/EmptyTests.qml
index f586dcc..24284c8 100644
--- a/tests/interpreter/runner/EmptyTests.qml
+++ b/tests/interpreter/runner/EmptyTests.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/interpreter/runner/FailTest.qml b/tests/interpreter/runner/FailTest.qml
index b3fd488..6b16321 100644
--- a/tests/interpreter/runner/FailTest.qml
+++ b/tests/interpreter/runner/FailTest.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/interpreter/runner/MyUtils.js b/tests/interpreter/runner/MyUtils.js
index d140506..79607e6 100644
--- a/tests/interpreter/runner/MyUtils.js
+++ b/tests/interpreter/runner/MyUtils.js
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/interpreter/runner/RunnerInternals.js b/tests/interpreter/runner/RunnerInternals.js
index 2934d7f..71ec36c 100644
--- a/tests/interpreter/runner/RunnerInternals.js
+++ b/tests/interpreter/runner/RunnerInternals.js
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/interpreter/runner/SkipTest.qml b/tests/interpreter/runner/SkipTest.qml
index 1872771..3308dcf 100644
--- a/tests/interpreter/runner/SkipTest.qml
+++ b/tests/interpreter/runner/SkipTest.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/interpreter/runner/UntestedTest.qml b/tests/interpreter/runner/UntestedTest.qml
index fe56850..9eb1249 100644
--- a/tests/interpreter/runner/UntestedTest.qml
+++ b/tests/interpreter/runner/UntestedTest.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/interpreter/runner/UntestedTests.qml b/tests/interpreter/runner/UntestedTests.qml
index 6b0e30b..61ceb06 100644
--- a/tests/interpreter/runner/UntestedTests.qml
+++ b/tests/interpreter/runner/UntestedTests.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/remote/AssistantTest.qml b/tests/remote/AssistantTest.qml
index 9f64a11..1c4ce67 100644
--- a/tests/remote/AssistantTest.qml
+++ b/tests/remote/AssistantTest.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/remote/QstObjectApiTests.qml b/tests/remote/QstObjectApiTests.qml
index 9139adc..9cec7ad 100644
--- a/tests/remote/QstObjectApiTests.qml
+++ b/tests/remote/QstObjectApiTests.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/remote/RemoteApiTests.qml b/tests/remote/RemoteApiTests.qml
index f7a4bcd..6edc491 100644
--- a/tests/remote/RemoteApiTests.qml
+++ b/tests/remote/RemoteApiTests.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/remote/RunProcessTests.qml b/tests/remote/RunProcessTests.qml
index 0e8baf2..af100c6 100644
--- a/tests/remote/RunProcessTests.qml
+++ b/tests/remote/RunProcessTests.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/remote/TestAppWidgetTest.qml b/tests/remote/TestAppWidgetTest.qml
index 2076b43..6771f82 100644
--- a/tests/remote/TestAppWidgetTest.qml
+++ b/tests/remote/TestAppWidgetTest.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/remote/common/ApplicationTest.qml b/tests/remote/common/ApplicationTest.qml
index 097e070..5751b15 100644
--- a/tests/remote/common/ApplicationTest.qml
+++ b/tests/remote/common/ApplicationTest.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/remote/qstobject/InheritanceBasedItemHandlerTest.qml b/tests/remote/qstobject/InheritanceBasedItemHandlerTest.qml
index c86677b..430dfe4 100644
--- a/tests/remote/qstobject/InheritanceBasedItemHandlerTest.qml
+++ b/tests/remote/qstobject/InheritanceBasedItemHandlerTest.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/remote/qstobject/ItemPropertyTest.qml b/tests/remote/qstobject/ItemPropertyTest.qml
index dc938cd..728a19c 100644
--- a/tests/remote/qstobject/ItemPropertyTest.qml
+++ b/tests/remote/qstobject/ItemPropertyTest.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/remote/qstobject/MyQLineEdit.qml b/tests/remote/qstobject/MyQLineEdit.qml
index 9f61577..c753755 100644
--- a/tests/remote/qstobject/MyQLineEdit.qml
+++ b/tests/remote/qstobject/MyQLineEdit.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/remote/qstobject/ParentApiTest.qml b/tests/remote/qstobject/ParentApiTest.qml
index 7034a6e..565b1e7 100644
--- a/tests/remote/qstobject/ParentApiTest.qml
+++ b/tests/remote/qstobject/ParentApiTest.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/remote/qstobject/QstObjectApiTests.qml b/tests/remote/qstobject/QstObjectApiTests.qml
index 41a0a8a..d0a4b01 100644
--- a/tests/remote/qstobject/QstObjectApiTests.qml
+++ b/tests/remote/qstobject/QstObjectApiTests.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.
diff --git a/tests/remote/runProcess/RunCommandTest.qml b/tests/remote/runProcess/RunCommandTest.qml
index 9b2b57e..b7bde7c 100644
--- a/tests/remote/runProcess/RunCommandTest.qml
+++ b/tests/remote/runProcess/RunCommandTest.qml
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/
**
** This file is part of QtSystemTest.