All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Aníbal Limón" <anibal.limon@linux.intel.com>
To: toaster@yoctoproject.org
Cc: benjamin.esquivel@linux.intel.com, william.c.randle@intel.com
Subject: [PATCH 8/8] toaster/tests: Adds Copyright information.
Date: Tue, 23 Feb 2016 11:31:30 -0600	[thread overview]
Message-ID: <1456248690-24299-9-git-send-email-anibal.limon@linux.intel.com> (raw)
In-Reply-To: <1456248690-24299-1-git-send-email-anibal.limon@linux.intel.com>

Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
---
 bin/toaster-test             | 17 +++++++++++++++++
 lib/toaster/tests/base.py    | 17 +++++++++++++++++
 lib/toaster/tests/helpers.py | 14 ++++++++++++++
 lib/toaster/tests/setup.py   | 17 +++++++++++++++++
 lib/toaster/tests/ui.py      | 17 ++++++++++++++++-
 5 files changed, 81 insertions(+), 1 deletion(-)

diff --git a/bin/toaster-test b/bin/toaster-test
index b0c26dc..d256629 100755
--- a/bin/toaster-test
+++ b/bin/toaster-test
@@ -1,5 +1,22 @@
 #!/usr/bin/env python
 
+# Toaster test runner
+#
+# Copyright (C) 2015-2016 Intel Corporation
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License version 2 as
+# published by the Free Software Foundation.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License along
+# with this program; if not, write to the Free Software Foundation, Inc.,
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
 import sys
 import os
 import argparse
diff --git a/lib/toaster/tests/base.py b/lib/toaster/tests/base.py
index 8b303ac..3c13612 100644
--- a/lib/toaster/tests/base.py
+++ b/lib/toaster/tests/base.py
@@ -1,3 +1,20 @@
+# Toaster tests base class
+#
+# Copyright (C) 2016 Intel Corporation
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License version 2 as
+# published by the Free Software Foundation.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License along
+# with this program; if not, write to the Free Software Foundation, Inc.,
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
 import unittest
 
 class ToasterOptions(object): 
diff --git a/lib/toaster/tests/helpers.py b/lib/toaster/tests/helpers.py
index 549358b..ed152b2 100755
--- a/lib/toaster/tests/helpers.py
+++ b/lib/toaster/tests/helpers.py
@@ -1,7 +1,21 @@
 #!/usr/bin/env python
 
+# Toaster helper for clone/setup/start/stop
+#
 # Copyright (C) 2016 Intel Corporation
 #
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License version 2 as
+# published by the Free Software Foundation.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License along
+# with this program; if not, write to the Free Software Foundation, Inc.,
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 
 import subprocess
 import os
diff --git a/lib/toaster/tests/setup.py b/lib/toaster/tests/setup.py
index 0acbb16..725e858 100644
--- a/lib/toaster/tests/setup.py
+++ b/lib/toaster/tests/setup.py
@@ -1,3 +1,20 @@
+# Toaster setup test case
+#
+# Copyright (C) 2015-2016 Intel Corporation
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License version 2 as
+# published by the Free Software Foundation.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License along
+# with this program; if not, write to the Free Software Foundation, Inc.,
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
 import time
 
 from selenium import webdriver
diff --git a/lib/toaster/tests/ui.py b/lib/toaster/tests/ui.py
index cb11184..74dc9ce 100644
--- a/lib/toaster/tests/ui.py
+++ b/lib/toaster/tests/ui.py
@@ -1,4 +1,19 @@
-# Copyright
+# Toaster UI/Backend test cases
+#
+# Copyright (C) 2015-2016 Intel Corporation
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License version 2 as
+# published by the Free Software Foundation.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License along
+# with this program; if not, write to the Free Software Foundation, Inc.,
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 
 # DESCRIPTION
 # This is toaster automation base class and test cases file
-- 
2.1.4



  parent reply	other threads:[~2016-02-23 17:29 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-02-23 17:31 [PATCH 0/8] Toaster improve test suite Aníbal Limón
2016-02-23 17:31 ` [PATCH 1/8] toaster/tests: Reorder/move current test code Aníbal Limón
2016-02-23 17:31 ` [PATCH 2/8] toaster/tests: Add __init__.py and base.py Aníbal Limón
2016-02-23 17:31 ` [PATCH 3/8] toaster/tests: Improve ui.py module Aníbal Limón
2016-02-23 17:31 ` [PATCH 4/8] toaster/tests: Adds setup test case Aníbal Limón
2016-02-23 17:31 ` [PATCH 5/8] toaster/tests: Add helpers.py module Aníbal Limón
2016-02-23 17:31 ` [PATCH 6/8] toaster-test: Refactor and imporvements Aníbal Limón
2016-02-23 17:31 ` [PATCH 7/8] toaster/tests: Add README, TODO and requeriments Aníbal Limón
2016-02-23 17:31 ` Aníbal Limón [this message]
2016-03-18 16:29 ` [PATCH 0/8] Toaster improve test suite Brian Avery
2016-03-18 16:55   ` Aníbal Limón

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1456248690-24299-9-git-send-email-anibal.limon@linux.intel.com \
    --to=anibal.limon@linux.intel.com \
    --cc=benjamin.esquivel@linux.intel.com \
    --cc=toaster@yoctoproject.org \
    --cc=william.c.randle@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.