Task #38847 - added.err

back to task #38847
download
Error: SHELLCHECK_WARNING (CWE-156):
/usr/share/buildah/test/system/run.bats:1020:11: warning[SC2046]: Quote this to prevent word splitting.
# 1018|   
# 1019|   @test "root fs only mounted once" {
# 1020|->   if test `uname` != Linux ; then
# 1021|       skip "not meaningful except on Linux"
# 1022|     fi

Error: SHELLCHECK_WARNING (CWE-156):
/usr/share/buildah/test/system/run.bats:1036:10: warning[SC2046]: Quote this to prevent word splitting.
# 1034|     echo "# mountinfo count:"
# 1035|     cat ${TEST_SCRATCH_DIR}/mountinfo3
# 1036|->   assert $(cat ${TEST_SCRATCH_DIR}/mountinfo3) -eq 1
# 1037|   }