summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtest/end-to-end/actions/action-equality.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/end-to-end/actions/action-equality.sh b/test/end-to-end/actions/action-equality.sh
index f0ce86b3..72762f30 100755
--- a/test/end-to-end/actions/action-equality.sh
+++ b/test/end-to-end/actions/action-equality.sh
@@ -46,14 +46,14 @@ cat > TARGETS <<'EOI'
EOI
-bin/tool-under-test build -J 1 --local_build_root .tool-root 2>log
-cat log
+bin/tool-under-test build -J 1 --local_build_root .tool-root -f build.log 2>&1
+cat build.log
echo
-grep '4 actions' log
-grep '1 cache hit' log
+grep 'Processed.* 4 actions' build.log
+grep '1 cache hit' build.log
echo
-bin/tool-under-test analyse --dump_graph graph.json
+bin/tool-under-test analyse --dump_graph graph.json 2>&1
echo
matching_targets=$(cat graph.json | jq -acM '.actions | [ .[] | .origins | [ .[] | .target]] | sort')
echo "${matching_targets}"