Add missing frontend/planner/model_attributes.py

Signed-off-by: James Ren <[email protected]>

--- /dev/null   2009-12-17 12:29:38.000000000 -0800
+++ autotest/frontend/planner/model_attributes.py       2010-03-09 
12:35:40.000000000 -0800
@@ -0,0 +1,15 @@
+import common
+from autotest_lib.client.common_lib import enum
+
+
+# common enums for Host attributes
+HostStatus = enum.Enum('Finished', 'Running', 'Blocked', string_values=True)
+
+
+# common enums for TestRun attributes
+TestRunStatus = enum.Enum('Active', 'Passed', 'Failed', string_values=True)
+
+
+# common enums for SavedObject attributes
+SavedObjectType = enum.Enum('support', 'triage', 'autoprocess', 'custom_query',
+                            string_values=True)
_______________________________________________
Autotest mailing list
[email protected]
http://test.kernel.org/cgi-bin/mailman/listinfo/autotest

Reply via email to