Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • S shared-mime-info
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 37
    • Issues 37
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 28
    • Merge requests 28
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Container Registry
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • xdg
  • shared-mime-info
  • Merge requests
  • !57

tests: Reduce the size of the test suite files

  • Review changes

  • Download
  • Email patches
  • Plain diff
Merged Bastien Nocera requested to merge wip/hadess/reduce-test-suite-size into master Feb 10, 2020
  • Overview 0
  • Commits 1
  • Pipelines 1
  • Changes 34

If we were to move to meson, the whole test suite would be available in the dist, so make sure this doesn't balloon the size of the tarball.

Size reduction executed with: for i in * ; do SIZE=$(stat --printf="%s" $i) ; if [ $SIZE -gt 131072 ] ; then dd if=$i of=$i.tmp bs=128k count=1 && mv $i.tmp $i ; fi ; done

Assignee
Assign to
Reviewers
Request review from
Time tracking
Source branch: wip/hadess/reduce-test-suite-size