summaryrefslogtreecommitdiff
path: root/completions
AgeCommit message (Collapse)AuthorFilesLines
2023-07-29bash-completion: Remove #! from non-executable fileJordan Justen1-2/+0
This file is intended to be sourced into the shell environment, and not run directly. Reviewed-by: David Heidelberg <david.heidelberg@collabora.com> Signed-off-by: Jordan Justen <jordan.l.justen@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/piglit/-/merge_requests/814>
2022-08-29fix the spelling in whole piglitDavid Heidelberg1-2/+2
Reviewed-by: Sergi Blanch Torne <sergi.blanch.torne@collabora.com> Signed-off-by: David Heidelberg <david.heidelberg@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/piglit/-/merge_requests/670>
2019-04-24Remove dead es3conform.py test suiteEric Anholt1-1/+1
I don't think this has been used in years -- khr_gles is the closest thing to how you'd run the conformance tests under piglit, today. Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
2017-12-23completions/bash: Update list of profile completions to match onRhys Kidd1-4/+5
Signed-off-by: Rhys Kidd <rhyskidd@gmail.com> Reviewed-by: Brian Paul <brianp@vmware.com>
2017-12-23completions/bash: Fix spelling mistakesRhys Kidd1-7/+7
Signed-off-by: Rhys Kidd <rhyskidd@gmail.com> Reviewed-by: Brian Paul <brianp@vmware.com>
2016-04-16completion/bash: Fix spelling mistakesEric Engestrom1-2/+2
Signed-off-by: Eric Engestrom <eric@engestrom.ch> Reviewed-by: Dylan Baker <baker.dylan.c@gmail.com> Signed-off-by: Vinson Lee <vlee@freedesktop.org>
2016-03-03completions/bash: Add a completion file for piglitDylan Baker1-0/+435
This file is a bash completion library for the 'piglit' command, it is as complete and accurate as I can get it with my limited knowledge and patience for bash. It does require the _filedir function from bash_completions, which is provided by most Linux distributions, the BSD's, and can be installed on OSX via homebrew or macports. I made this decisions over using the builtin features from bash because the builtins don't handle spaces in file and folder names, and don't allow restrictions to be placed on the type or extension like _filedir does. Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com>