Skip to content

Commit

Permalink
automated: linux: modules: fix indentation
Browse files Browse the repository at this point in the history
Signed-off-by: Anders Roxell <[email protected]>
  • Loading branch information
roxell authored and nareshkamboju committed Jul 10, 2024
1 parent e3f51b8 commit bde4f2e
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions automated/linux/modules/modules.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@ get_modules_list() {
for subdir in ${MODULES_SUBDIRS}; do
find /lib/modules/"$(uname -r)"/kernel/"${subdir}" -type f -name '*.ko*' | tee -a /tmp/find_modules.txt
done
split --verbose --numeric-suffixes=1 -n l/"${SHARD_INDEX}"/"${SHARD_NUMBER}" /tmp/find_modules.txt > /tmp/shardfile
echo "============== Tests to run ==============="
cat /tmp/shardfile
echo "===========End Tests to run ==============="
if [ -s /tmp/shardfile ]; then
report_pass "shardfile"
else
report_fail "shardfile"
fi
split --verbose --numeric-suffixes=1 -n l/"${SHARD_INDEX}"/"${SHARD_NUMBER}" /tmp/find_modules.txt > /tmp/shardfile
echo "============== Tests to run ==============="
cat /tmp/shardfile
echo "===========End Tests to run ==============="
if [ -s /tmp/shardfile ]; then
report_pass "shardfile"
else
report_fail "shardfile"
fi
while IFS= read -r line
do
module_basename=$(basename "${line}")
Expand Down

0 comments on commit bde4f2e

Please sign in to comment.