Skip to content

Commit

Permalink
Fix test in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
fmeum committed Oct 16, 2024
1 parent 3250ef5 commit a0139e5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/test/shell/integration/watchfs_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -128,16 +128,17 @@ EOF

sleep 1
bazel build --watchfs //... &> "$TEST_log" || fail "Expected success."
expect_not_log "WARNING:"
expect_not_log "WARNING:.*falling back to manually.*"
expect_log "Hello, Unicode!"
assert_contains "foo" "${PRODUCT_NAME}-bin/pkg/foo.out"

cat > 'pkg/foo 🌱.in' << 'EOF'
bar
EOF

sleep 1
bazel build --watchfs //... &> "$TEST_log" || fail "Expected success."
expect_not_log "WARNING:"
expect_not_log "WARNING:.*falling back to manually.*"
expect_not_log "Hello, Unicode!"
assert_contains "bar" "${PRODUCT_NAME}-bin/pkg/foo.out"
}
Expand Down

0 comments on commit a0139e5

Please sign in to comment.