summaryrefslogtreecommitdiff
path: root/scripts/diff-dump-tree.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/diff-dump-tree.sh')
-rwxr-xr-xscripts/diff-dump-tree.sh14
1 files changed, 13 insertions, 1 deletions
diff --git a/scripts/diff-dump-tree.sh b/scripts/diff-dump-tree.sh
index aa9c2a9..42a3ec0 100755
--- a/scripts/diff-dump-tree.sh
+++ b/scripts/diff-dump-tree.sh
@@ -1,5 +1,17 @@
#!/bin/bash
-make -C ../btrfs-progs
+set -e
+(
+ cd ../btrfs-progs
+ if ! test -f configure; then
+ ./autogen.sh
+ fi
+ if ! test -f config.status; then
+ ./configure \
+ --disable-documentation \
+ --enable-experimental
+ fi
+ make
+)
diff -u \
<(../btrfs-progs/btrfs inspect dump-tree --noscan --csum-items ../scratch/new.img | sed -e 's/ UNKNOWN.0 / UNTYPED /g' -e 's/\b18446744073709551615\b/-1/g') \
<(go run ./cmd/btrfs-rec/ inspect dump-trees --pv=../scratch/new.img)