diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2022-03-13 13:41:42 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2022-03-13 13:44:32 -0400 |
commit | b277c47ea4154e5d5acc0927d8f8374f489b4437 (patch) | |
tree | 3ed26b1ff72d5fe02eb06a4718bb18a6605d8349 /tests.sh | |
parent | 851942e235fe17869d7e7f2b3cc4d559f1e90e89 (diff) | |
download | bfs-b277c47ea4154e5d5acc0927d8f8374f489b4437.tar.xz |
tests: Use -print0 instead of -printf '%p ' for exec flush tests
Diffstat (limited to 'tests.sh')
-rwxr-xr-x | tests.sh | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1753,13 +1753,13 @@ function test_exec_substring() { function test_exec_flush() { # IO streams should be flushed before executing programs - bfs_diff basic -printf '%p ' -exec echo found \; + bfs_diff basic -print0 -exec echo found \; } function test_exec_flush_fail() { # Failure to flush streams before exec should be caught skip_if test ! -e /dev/full - fail quiet invoke_bfs basic -printf '%p ' -exec true \; >/dev/full + fail quiet invoke_bfs basic -print0 -exec true \; >/dev/full } function test_exec_flush_fprint() { @@ -1773,12 +1773,12 @@ function test_exec_flush_fprint_fail() { } function test_exec_plus_flush() { - bfs_diff basic/a -printf '%p ' -exec echo found {} + + bfs_diff basic/a -print0 -exec echo found {} + } function test_exec_plus_flush_fail() { skip_if test ! -e /dev/full - fail quiet invoke_bfs basic/a -printf '%p ' -exec echo found {} + >/dev/full + fail quiet invoke_bfs basic/a -print0 -exec echo found {} + >/dev/full } function test_execdir() { |