Ting-Wei Lan <lant...@gmail.com> skribis: > They are on tmpfs and the order of the two arguments of 'string- > prefix?' function seems to be wrong, so these 3 entries are ignored. > > A simple fix: > > diff --git a/tests/guix-environment-container.sh > b/tests/guix-environment-container.sh > index 12da950..d7c1b70 100644 > --- a/tests/guix-environment-container.sh > +++ b/tests/guix-environment-container.sh > @@ -72,7 +72,7 @@ mount_test_code=" > ;; correspond to a parent file system. > ((_ mount (or \"tmpfs\" \"proc\" \"sysfs\" \"devtmpfs\" > \"devpts\" \"cgroup\" \"mqueue\") _ _ _) > - (and (string-prefix? mount (getcwd)) > + (and (string-prefix? (getcwd) mount) > mount)) > ((_ mount _ _ _ _) > mount))) > > After changing the order, guix-environment-container.sh passes.
Good catch! Applied, thanks! Ludo’.