xref: /openbmc/linux/scripts/spdxcheck-test.sh (revision fae35da4)
1b72231ebSThierry Reding#!/bin/sh
2b72231ebSThierry Reding
3b72231ebSThierry Reding# run check on a text and a binary file
4*fae35da4SMiguel Ojedafor FILE in Makefile Documentation/images/logo.gif; do
503b1292dSNishanth Menon	python3 scripts/spdxcheck.py $FILE
603b1292dSNishanth Menon	python3 scripts/spdxcheck.py - < $FILE
7b72231ebSThierry Redingdone
8b72231ebSThierry Reding
9b72231ebSThierry Reding# run check on complete tree to catch any other issues
1003b1292dSNishanth Menonpython3 scripts/spdxcheck.py > /dev/null
11