about summary refs log tree commit diff
path: root/tests (follow)
Commit message (Expand)AuthorAge
* global: spelling fixesVille Skyttä2017-10-15
* tests: allow shell to be overriddenJohn Keeping2015-08-13
* t0110: Chain together using &&Jason A. Donenfeld2015-08-12
* ui-patch: match git-format-patch(1) outputJohn Keeping2014-12-28
* t0108: modernize styleJohn Keeping2014-12-28
* tests: only do lua tests if lua is compiled-inJason A. Donenfeld2014-01-20
* t0111: Additions and fixesLukas Fleischer2014-01-16
* t0111: Add basic tests for Lua filtersLukas Fleischer2014-01-15
* tests/: Add t0111-filter.shLukas Fleischer2014-01-14
* tests: add CGIT_TEST_OPTS variable to MakefileJohn Keeping2014-01-12
* tests: add Valgrind supportJohn Keeping2014-01-12
* Reduce line number bloat, fix hover effectPeter Wu2014-01-08
* tests/: Add t0110-rawdiff.shLukas Fleischer2013-08-26
* t0108: Add tests for revision rangesLukas Fleischer2013-08-26
* t0108: Compare output with git-format-patch(1)Lukas Fleischer2013-08-26
* ui-patch.c: Add additional newline after each patchLukas Fleischer2013-08-26
* t0108: Avoid unnecessary fork()Lukas Fleischer2013-08-26
* cache.c: cache ls_cache output properlyJohn Keeping2013-05-22
* tests: introduce strip_header() helper functionJohn Keeping2013-05-22
* t0109: "function" is a bash-ismJohn Keeping2013-05-13
* ui-snapshot: do not access $HOMEJason A. Donenfeld2013-04-30
* t0001: validate Git -rcN version numbers correctlyJohn Keeping2013-04-27
* t0001: ignore ".dirty" suffix on Git versionJohn Keeping2013-04-15
* tests: set TEST_OUTPUT_DIRECTORY to the CGit test directoryJohn Keeping2013-04-15
* t0109: test more URLsJohn Keeping2013-04-15
* t0107: Skip ZIP tests if unzip(1) isn't availableLukas Fleischer2013-04-10
* tests/: Do not use `sed -i`Lukas Fleischer2013-04-10
* t0109: chain operations with &&John Keeping2013-04-10
* t0107: Use `tar -z` for gzip'ed archivesLukas Fleischer2013-04-09
* tests: Make sure that git does not access $HOMEJason A. Donenfeld2013-04-08
* tests/.gitignore: update for using Git's test infrastructureJohn Keeping2013-04-08
* tests: use Git's test frameworkJohn Keeping2013-04-08
* tests: check that Git version are in syncJohn Keeping2013-03-20
* t0107-snapshot: add tests for ZIP archivesJohn Keeping2013-03-04
* tests: make whitespace consistentJohn Keeping2013-03-04
* tests: "grep -e" is not portable to all platformsJohn Keeping2013-03-04
* tests: check for proper html entityJason A. Donenfeld2012-10-17
* Merge branch 'stable'Lars Hjemli2012-03-18
|\
| * tests: properly quote arguments to printfFerry Huberts2012-03-18
| * tests: handle paths with whitespaceFerry Huberts2012-03-18
* | Merge branch 'stable'Lars Hjemli2011-07-21
|\|
| * tests: fix failures when CDPATH is setFerry Huberts2011-07-21
* | cgit.c: add 'clone-url' setting with support for macro expansionLars Hjemli2011-06-13
|/
* ui-log.c: do not link from age columnLars Hjemli2011-06-02
* tests: add tests for links with space in path and/or argsLars Hjemli2011-05-23
* tests/setup.sh: add support for known bugsLars Hjemli2011-05-23
* t0108-patch: add 'tests_done' to endMark Lodato2010-08-29
* Merge branch 'jw/commit-decorations'Lars Hjemli2009-01-27
|\
| * tests/t0105-commit.sh: expect commit decorationsLars Hjemli2009-01-27
* | Merge branch 'og/tree-view-selection'Lars Hjemli2009-01-27
|\ \ | |/ |/|
storing 8 (not 255!) different flags. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2014-01-10cgit.c: Use "else" for mutually exclusive branchesLukas Fleischer When parsing command line arguments, no pair of command line options can ever match simultaneously. Use "else if" blocks to reflect this. This change improves both readability and speed. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2014-01-10ui-snapshot.c: Do not reinvent suffixcmp()Lukas Fleischer Use suffixcmp() from Git instead of reimplementing it. This is a preparation for moving to ends_with() in Git 1.8.6. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2014-01-10Refactor cgit_parse_snapshots_mask()Lukas Fleischer Use Git string lists instead of str{spn,cspn,ncmp}() magic. This significantly improves readability. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2014-01-10Disallow use of undocumented snapshot delimitersLukas Fleischer Since the introduction of selective snapshot format configuration in dc3c9b5 (allow selective enabling of snapshots, 2007-07-21), we allowed seven different delimiters for snapshot formats, while the documentation has always been clear about spaces being the only valid delimiter: The value is a space-separated list of zero or more of the values "tar", "tar.gz", "tar.bz2", "tar.xz" and "zip". Supporting the undocumented delimiters makes the code unnecessarily complex. Remove them. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2014-01-10Replace most uses of strncmp() with prefixcmp()Lukas Fleischer This is a preparation for replacing all prefix checks with either strip_prefix() or starts_with() when Git 1.8.6 is released. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2014-01-09README: Fix dependenciesLukas Fleischer * Remove the dependency on Git (which can be obtained automatically when building, using either the Git submodule or `make get-git`). * Use proper upstream names of dependencies. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2014-01-08README: Spelling and formatting fixesLukas Fleischer * Several small spelling and capitalization fixes. * Use consistent and better-looking formatting that is compatible with AsciiDoc (and partly compatible with RST). Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2014-01-08Fix UTF-8 with syntax-highlighting.pyPřemysl Janouch Previously the script tried to encode output from Pygments with the ASCII codec, which failed. Signed-off-by: Přemysl Janouch <p.janouch@gmail.com> 2014-01-08Add a suggestion to the manpagePřemysl Janouch So that people wishing to use "enable-http-clone" don't have to find out the correct settings on their own. Signed-off-by: Přemysl Janouch <p.janouch@gmail.com> 2014-01-08Fix the example configurationPřemysl Janouch "enable-git-clone" doesn't exist, replaced with "enable-http-clone". Signed-off-by: Přemysl Janouch <p.janouch@gmail.com> 2014-01-08Fix about-formatting.shPřemysl Janouch dash failed to parse the script. Signed-off-by: Přemysl Janouch <p.janouch@gmail.com> 2014-01-08Fix some spelling errorsPřemysl Janouch Signed-off-by: Přemysl Janouch <p.janouch@gmail.com> 2014-01-08filters: highlight.sh: add css comments for highlight 2.6 and 3.8Ferry Huberts