summaryrefslogtreecommitdiff
path: root/morphlib/artifactresolver_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'morphlib/artifactresolver_tests.py')
-rw-r--r--morphlib/artifactresolver_tests.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/morphlib/artifactresolver_tests.py b/morphlib/artifactresolver_tests.py
index 30f949c8..1ad9ba2d 100644
--- a/morphlib/artifactresolver_tests.py
+++ b/morphlib/artifactresolver_tests.py
@@ -19,10 +19,13 @@ import yaml
import morphlib
-
default_split_rules = {
- 'chunk': morphlib.artifactsplitrule.DEFAULT_CHUNK_RULES,
- 'stratum': morphlib.artifactsplitrule.DEFAULT_STRATUM_RULES,
+'chunk': [
+ ('-bins', ['(usr/)?bin/.*']),
+ ('-devel', ['(usr/)?include/.*'])],
+'stratum': [
+ ('-devel', ['.*-devel', '.*-debug']),
+ ('-runtime', ['.*-bins', '.*'])]
}