commit 6574665f9d6c0757e8f55ccb465afbcaa90bf019 Author: Timotej Lazar Date: Wed Aug 19 19:36:02 2020 +0200 test: normalize flags reported by dumpe2fs Filesystem flags depend on the system – usually signed_directory_hash, but unsigned_directory_hash at least on arm64. Signed-off-by: Timotej Lazar diff --git a/test/basic-images.test b/test/basic-images.test index f6685e1..cb104c3 100755 --- a/test/basic-images.test +++ b/test/basic-images.test @@ -158,6 +158,8 @@ check_ext() { # format change csum2="Group 0: (Blocks 1-4095) \\[ITABLE_ZEROED\\]\| Checksum .*, unused inodes 205" dumpe2fs "${1}" | grep -v "^\($uuid\|$seed\|$csum1\|$csum2\)" > "dump" && + # some architectures (including arm64) use unsigned char + sed -i 's/un\(signed_directory_hash\)/\1/' "dump" && # fixup for ext3 journal size with old tune2fs sed -i 's/^\(Journal size: \)1029k$/\11024k/' "dump" && # output format changed with some version '>
aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-07-01tests: Adjust 'guix graph' test to latest OCaml changes.Ludovic Courtès
* tests/graph.scm ("reverse bag DAG"): Adjust to latest OCaml changes by looking at dune/ocaml-camomile/ocaml-utop.
2022-02-05tests: Assert that cyclic graphs can be produced.Liliana Marie Prikler
* tests/graph.scm ("package DAG, oops it was a cycle"): New test.
2021-09-21graph: Add '--max-depth'.Ludovic Courtès
* guix/graph.scm (export-graph): Add #:max-depth and honor it, adding 'depths' argument to 'loop'. * guix/scripts/graph.scm (%options, show-help): Add '--max-depth'. (%default-options): Add 'max-depth'. (guix-graph): Pass #:max-depth to 'export-graph'. * tests/graph.scm ("package DAG, limited depth"): New test. * doc/guix.texi (Invoking guix graph): Document it.