summaryrefslogtreecommitdiff
path: root/tests/format/project
diff options
context:
space:
mode:
Diffstat (limited to 'tests/format/project')
-rw-r--r--tests/format/project/plugin-allowed/plugins/foo.py3
-rw-r--r--tests/format/project/plugin-forbidden/forbidden-plugins/forbidden-plugin.py3
-rw-r--r--tests/format/project/plugin-no-load-ref/plugins/noloadref.py3
-rw-r--r--tests/format/project/plugin-preflight-error/errorplugin/preflighterror.py3
4 files changed, 12 insertions, 0 deletions
diff --git a/tests/format/project/plugin-allowed/plugins/foo.py b/tests/format/project/plugin-allowed/plugins/foo.py
index bf884233c..76d9bfd3c 100644
--- a/tests/format/project/plugin-allowed/plugins/foo.py
+++ b/tests/format/project/plugin-allowed/plugins/foo.py
@@ -2,6 +2,9 @@ from buildstream import Element
class FooElement(Element):
+
+ BST_MIN_VERSION = "2.0"
+
def configure(self, config):
pass
diff --git a/tests/format/project/plugin-forbidden/forbidden-plugins/forbidden-plugin.py b/tests/format/project/plugin-forbidden/forbidden-plugins/forbidden-plugin.py
index bf884233c..76d9bfd3c 100644
--- a/tests/format/project/plugin-forbidden/forbidden-plugins/forbidden-plugin.py
+++ b/tests/format/project/plugin-forbidden/forbidden-plugins/forbidden-plugin.py
@@ -2,6 +2,9 @@ from buildstream import Element
class FooElement(Element):
+
+ BST_MIN_VERSION = "2.0"
+
def configure(self, config):
pass
diff --git a/tests/format/project/plugin-no-load-ref/plugins/noloadref.py b/tests/format/project/plugin-no-load-ref/plugins/noloadref.py
index e2fe0ac46..2b8fd0b51 100644
--- a/tests/format/project/plugin-no-load-ref/plugins/noloadref.py
+++ b/tests/format/project/plugin-no-load-ref/plugins/noloadref.py
@@ -6,6 +6,9 @@ from buildstream import Source
# Use this to test that the core behaves as expected with such plugins.
#
class NoLoadRefSource(Source):
+
+ BST_MIN_VERSION = "2.0"
+
def configure(self, node):
pass
diff --git a/tests/format/project/plugin-preflight-error/errorplugin/preflighterror.py b/tests/format/project/plugin-preflight-error/errorplugin/preflighterror.py
index db2895f8b..a03cb64ee 100644
--- a/tests/format/project/plugin-preflight-error/errorplugin/preflighterror.py
+++ b/tests/format/project/plugin-preflight-error/errorplugin/preflighterror.py
@@ -2,6 +2,9 @@ from buildstream import Source, SourceError
class PreflightErrorSource(Source):
+
+ BST_MIN_VERSION = "2.0"
+
def configure(self, node):
pass