summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cxmanage_test/__init__.py2
-rw-r--r--cxmanage_test/controller_test.py2
-rw-r--r--cxmanage_test/image_test.py2
-rw-r--r--cxmanage_test/target_test.py2
-rw-r--r--cxmanage_test/tftp_test.py2
-rwxr-xr-xrun_tests2
6 files changed, 12 insertions, 0 deletions
diff --git a/cxmanage_test/__init__.py b/cxmanage_test/__init__.py
index 0e1ab76..9e1c15e 100644
--- a/cxmanage_test/__init__.py
+++ b/cxmanage_test/__init__.py
@@ -1,3 +1,5 @@
+#Copyright 2012 Calxeda, Inc. All Rights Reserved.
+
""" Various objects used by tests """
import random
diff --git a/cxmanage_test/controller_test.py b/cxmanage_test/controller_test.py
index 34f9f2f..364bb78 100644
--- a/cxmanage_test/controller_test.py
+++ b/cxmanage_test/controller_test.py
@@ -1,3 +1,5 @@
+#Copyright 2012 Calxeda, Inc. All Rights Reserved.
+
import random
import time
import unittest
diff --git a/cxmanage_test/image_test.py b/cxmanage_test/image_test.py
index c32092b..b60e0e7 100644
--- a/cxmanage_test/image_test.py
+++ b/cxmanage_test/image_test.py
@@ -1,3 +1,5 @@
+#Copyright 2012 Calxeda, Inc. All Rights Reserved.
+
import os
import shutil
import tempfile
diff --git a/cxmanage_test/target_test.py b/cxmanage_test/target_test.py
index 5fc046e..5d83ed7 100644
--- a/cxmanage_test/target_test.py
+++ b/cxmanage_test/target_test.py
@@ -1,3 +1,5 @@
+#Copyright 2012 Calxeda, Inc. All Rights Reserved.
+
import random
import shutil
import tempfile
diff --git a/cxmanage_test/tftp_test.py b/cxmanage_test/tftp_test.py
index bf41476..e799bb3 100644
--- a/cxmanage_test/tftp_test.py
+++ b/cxmanage_test/tftp_test.py
@@ -1,3 +1,5 @@
+#Copyright 2012 Calxeda, Inc. All Rights Reserved.
+
import os
import shutil
import tempfile
diff --git a/run_tests b/run_tests
index 12c69a7..1d90495 100755
--- a/run_tests
+++ b/run_tests
@@ -1,5 +1,7 @@
#!/usr/bin/env python
+#Copyright 2012 Calxeda, Inc. All Rights Reserved.
+
import unittest
from cxmanage_test import tftp_test, image_test, target_test, controller_test