summaryrefslogtreecommitdiff
path: root/tests/format/dependencies3/plugins/configunsupported.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/format/dependencies3/plugins/configunsupported.py')
-rw-r--r--tests/format/dependencies3/plugins/configunsupported.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/format/dependencies3/plugins/configunsupported.py b/tests/format/dependencies3/plugins/configunsupported.py
new file mode 100644
index 000000000..9dcaca1ee
--- /dev/null
+++ b/tests/format/dependencies3/plugins/configunsupported.py
@@ -0,0 +1,19 @@
+from buildstream import Element
+
+
+class ConfigUnsupported(Element):
+ BST_MIN_VERSION = "2.0"
+
+ def configure(self, node):
+ pass
+
+ def preflight(self):
+ pass
+
+ def get_unique_key(self):
+ return {}
+
+
+# Plugin entry point
+def setup():
+ return ConfigUnsupported