tests.texlive.fmtutilCnf: init

This commit is contained in:
Vincenzo Mantova 2021-07-12 20:37:51 +01:00
parent 5fc3462a46
commit e40614da00

View file

@ -152,4 +152,16 @@
| tee "$out/scheme-infraonly/$fname.patch"
done
'';
# test that fmtutil.cnf is fully regenerated on scheme-full
fmtutilCnf = runCommandNoCC "texlive-test-fmtutil.cnf" {
kpathsea = lib.head texlive.kpathsea.pkgs;
schemeFull = texlive.combined.scheme-full;
} ''
mkdir -p "$out"
diff --ignore-matching-lines='^# Generated by ' -u \
{"$kpathsea","$schemeFull"/share/texmf}/web2c/fmtutil.cnf \
| tee "$out/fmtutil.cnf.patch"
'';
}