summaryrefslogtreecommitdiff
path: root/tests.build/build-system-python-distutils.script
diff options
context:
space:
mode:
Diffstat (limited to 'tests.build/build-system-python-distutils.script')
-rwxr-xr-xtests.build/build-system-python-distutils.script17
1 files changed, 13 insertions, 4 deletions
diff --git a/tests.build/build-system-python-distutils.script b/tests.build/build-system-python-distutils.script
index e5c0ea74..44418655 100755
--- a/tests.build/build-system-python-distutils.script
+++ b/tests.build/build-system-python-distutils.script
@@ -69,12 +69,21 @@ git commit -q -m "Set custom install prefix for hello"
"$SRCDIR/scripts/test-morph" build-morphology \
test:morphs-repo master hello-system
-for chunk in "$DATADIR/cache/artifacts/"*.chunk.*
+cd "$DATADIR"
+"$SRCDIR/scripts/test-morph" init workspace
+cd "$DATADIR/workspace"
+"$SRCDIR/scripts/test-morph" checkout test:morphs-repo master
+cd "$DATADIR/workspace/master/test/morphs-repo"
+
+refs=`"$SRCDIR/scripts/test-morph" query-cache hello-system.morph hello`
+for ref in $refs
do
- tar -tf "$chunk"
+ ostree --repo="$DATADIR/cache/artifacts/repo" checkout --fsync=false \
+ "$ref" "$DATADIR/$ref"
+ find $DATADIR/$ref/* | sed "s:^$DATADIR/$ref/::"
done | LC_ALL=C sort -u | sed '/^\.\/./s:^\./::' | grep -Ee '^(bin|lib)' |
sed -e 's:^local/::' \
- -e 's:lib/python2.[6-9]/:lib/python2.x/:' \
- -e 's:/hello-0\.0\.0[^/]*\.egg-info$:/hello.egg-info/:' \
+ -e 's:lib/python2.[6-9]:lib/python2.x:' \
+ -e 's:/hello-0\.0\.0[^/]*\.egg-info$:/hello.egg-info:' \
-e 's:[^/]*-packages:packages:' \
-e '/^$/d'