perf-targz-src-pkg 735 B

1234567891011121314151617181920212223
  1. #!/bin/sh
  2. # SPDX-License-Identifier: GPL-2.0
  3. # Test one of the main kernel Makefile targets to generate a perf sources tarball
  4. # suitable for build outside the full kernel sources.
  5. #
  6. # This is to test that the tools/perf/MANIFEST file lists all the files needed to
  7. # be in such tarball, which sometimes gets broken when we move files around,
  8. # like when we made some files that were in tools/perf/ available to other tools/
  9. # codebases by moving it to tools/include/, etc.
  10. PERF=$1
  11. cd ${PERF}/../..
  12. make perf-targz-src-pkg > /dev/null
  13. TARBALL=$(ls -rt perf-*.tar.gz)
  14. TMP_DEST=$(mktemp -d)
  15. tar xf ${TARBALL} -C $TMP_DEST
  16. rm -f ${TARBALL}
  17. cd - > /dev/null
  18. make -C $TMP_DEST/perf*/tools/perf > /dev/null
  19. RC=$?
  20. rm -rf ${TMP_DEST}
  21. exit $RC