aboutsummaryrefslogtreecommitdiff
path: root/bestflags
diff options
context:
space:
mode:
authorYuheng Long <yuhenglong@google.com>2013-07-19 16:29:13 -0700
committerChromeBot <chrome-bot@google.com>2013-07-22 09:33:33 -0700
commit16d7a5204e347855b1c3a68c982c22f931a12866 (patch)
tree65385b62fa87fc8b98a61430c5d99206f632b821 /bestflags
parent8b9c0f140b48253cdbcc7c050f115c5e3bda6d88 (diff)
downloadtoolchain-utils-16d7a5204e347855b1c3a68c982c22f931a12866.tar.gz
Added the copyright information.
BUG=None TEST=unit testing for the pipeline stage, pipeline workers and generation. Change-Id: I1a4eb5e2759ea536fa6faee613199b8f679f586e Reviewed-on: https://gerrit-int.chromium.org/41357 Reviewed-by: Simon Que <sque@google.com> Tested-by: Yuheng Long <yuhenglong@google.com> Commit-Queue: Yuheng Long <yuhenglong@google.com>
Diffstat (limited to 'bestflags')
-rw-r--r--bestflags/generation.py4
-rw-r--r--bestflags/generation_test.py4
-rw-r--r--bestflags/mock_task.py4
-rw-r--r--bestflags/pipeline_process.py4
-rw-r--r--bestflags/pipeline_process_test.py4
-rw-r--r--bestflags/pipeline_worker.py4
-rw-r--r--bestflags/pipeline_worker_test.py4
-rw-r--r--bestflags/steering.py4
-rw-r--r--bestflags/steering_test.py4
-rw-r--r--bestflags/task.py4
-rw-r--r--bestflags/task_test.py4
11 files changed, 44 insertions, 0 deletions
diff --git a/bestflags/generation.py b/bestflags/generation.py
index 1a0ad4c0..f1a63631 100644
--- a/bestflags/generation.py
+++ b/bestflags/generation.py
@@ -1,3 +1,7 @@
+# Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
"""A generation of a set of tasks.
Part of the Chrome build flags optimization.
diff --git a/bestflags/generation_test.py b/bestflags/generation_test.py
index a8bdf599..748a9886 100644
--- a/bestflags/generation_test.py
+++ b/bestflags/generation_test.py
@@ -1,3 +1,7 @@
+# Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
"""Generation unittest.
Part of the Chrome build flags optimization.
diff --git a/bestflags/mock_task.py b/bestflags/mock_task.py
index 2582f111..059536cd 100644
--- a/bestflags/mock_task.py
+++ b/bestflags/mock_task.py
@@ -1,3 +1,7 @@
+# Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
"""This module defines the common mock task used by varies unit tests.
Part of the Chrome build flags optimization.
diff --git a/bestflags/pipeline_process.py b/bestflags/pipeline_process.py
index 20f77ab5..8c98fdb2 100644
--- a/bestflags/pipeline_process.py
+++ b/bestflags/pipeline_process.py
@@ -1,3 +1,7 @@
+# Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
"""Pipeline process that encapsulates the actual content.
Part of the Chrome build flags optimization.
diff --git a/bestflags/pipeline_process_test.py b/bestflags/pipeline_process_test.py
index b5956857..1d5af49f 100644
--- a/bestflags/pipeline_process_test.py
+++ b/bestflags/pipeline_process_test.py
@@ -1,3 +1,7 @@
+# Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
"""Pipeline Process unittest.
Part of the Chrome build flags optimization.
diff --git a/bestflags/pipeline_worker.py b/bestflags/pipeline_worker.py
index 6ec28fe6..7cccaead 100644
--- a/bestflags/pipeline_worker.py
+++ b/bestflags/pipeline_worker.py
@@ -1,3 +1,7 @@
+# Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
"""The pipeline_worker functions of the build and test stage of the framework.
Part of the Chrome build flags optimization.
diff --git a/bestflags/pipeline_worker_test.py b/bestflags/pipeline_worker_test.py
index 98d141dd..4ed6e350 100644
--- a/bestflags/pipeline_worker_test.py
+++ b/bestflags/pipeline_worker_test.py
@@ -1,3 +1,7 @@
+# Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
"""Unittest for the pipeline_worker functions in the build/test stage.
Part of the Chrome build flags optimization.
diff --git a/bestflags/steering.py b/bestflags/steering.py
index 8312924f..ce718a45 100644
--- a/bestflags/steering.py
+++ b/bestflags/steering.py
@@ -1,3 +1,7 @@
+# Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
"""A Genetic Algorithm implementation for selecting good flags.
Part of the Chrome build flags optimization.
diff --git a/bestflags/steering_test.py b/bestflags/steering_test.py
index cdda67b3..828d2265 100644
--- a/bestflags/steering_test.py
+++ b/bestflags/steering_test.py
@@ -1,3 +1,7 @@
+# Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
"""Steering stage unittest.
Part of the Chrome build flags optimization.
diff --git a/bestflags/task.py b/bestflags/task.py
index 687a8293..b1319ca1 100644
--- a/bestflags/task.py
+++ b/bestflags/task.py
@@ -1,3 +1,7 @@
+# Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
"""A reproducing entity.
Part of the Chrome build flags optimization.
diff --git a/bestflags/task_test.py b/bestflags/task_test.py
index 4a76db0d..ec3d5b6e 100644
--- a/bestflags/task_test.py
+++ b/bestflags/task_test.py
@@ -1,3 +1,7 @@
+# Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
"""Task unittest.
Part of the Chrome build flags optimization.