@@ -17,6 +17,8 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
+. common/shellcheck
+
group_requires() {
if [[ -v META_REQUIRES_SKIP ]]; then
SKIP_REASON="META_REQUIRES_SKIP was set"
@@ -76,7 +78,7 @@ RIP: blk_dev_init+0x4/0x6 RSP: ffffc9000031fe70
---[ end trace d9ab35f734a89f58 ]---
EOF
- cat "$TMPDIR/dmesg" | while IFS= read -r line; do
+ while IFS= read -r line; do
echo "$line" >> /dev/kmsg
- done
+ done < "$TMPDIR/dmesg"
}
Avoid that shellcheck complains about unused global variables. Avoid that shellcheck complains about using cat instead of redirection. Signed-off-by: Bart Van Assche <bart.vanassche@wdc.com> --- tests/meta/group | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-)