diff options
Diffstat (limited to 'test/suites/no_compression.bash')
-rw-r--r-- | test/suites/no_compression.bash | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/suites/no_compression.bash b/test/suites/no_compression.bash index 820a13d1..ec7d7608 100644 --- a/test/suites/no_compression.bash +++ b/test/suites/no_compression.bash @@ -66,7 +66,8 @@ SUITE_no_compression() { expect_stat files_in_cache 2 result_file=$(find $CCACHE_DIR -name '*R') - printf foo | dd of=$result_file bs=3 count=1 seek=20 conv=notrunc >&/dev/null + # Write BAD at byte 300. + printf BAD | dd of=$result_file bs=3 count=1 seek=100 conv=notrunc >&/dev/null $CCACHE_COMPILE -c test.c expect_stat direct_cache_hit 1 |