c95cc5ec56
This allows tests to run in parallel as well as letting us use "prove" or another TAP harness to run the tests. Git's test framework requires Git to be fully built before letting any tests run, so add a new target to the top-level Makefile which builds all of Git instead of just libgit.a and make the "test" target depend on that. Signed-off-by: John Keeping <john@keeping.me.uk>
33 行
873 B
Bash
実行ファイル
33 行
873 B
Bash
実行ファイル
#!/bin/sh
|
|
|
|
test_description='Check content on tree page'
|
|
. ./setup.sh
|
|
|
|
test_expect_success 'generate bar/tree' 'cgit_url "bar/tree" >tmp'
|
|
test_expect_success 'find file-1' 'grep "file-1" tmp'
|
|
test_expect_success 'find file-50' 'grep "file-50" tmp'
|
|
|
|
test_expect_success 'generate bar/tree/file-50' 'cgit_url "bar/tree/file-50" >tmp'
|
|
|
|
test_expect_success 'find line 1' '
|
|
grep "<a class=.no. id=.n1. name=.n1. href=.#n1.>1</a>" tmp
|
|
'
|
|
|
|
test_expect_success 'no line 2' '
|
|
! grep "<a class=.no. id=.n2. name=.n2. href=.#n2.>2</a>" tmp
|
|
'
|
|
|
|
test_expect_success 'generate foo+bar/tree' 'cgit_url "foo%2bbar/tree" >tmp'
|
|
|
|
test_expect_success 'verify a+b link' '
|
|
grep "/foo+bar/tree/a+b" tmp
|
|
'
|
|
|
|
test_expect_success 'generate foo+bar/tree?h=1+2' 'cgit_url "foo%2bbar/tree&h=1%2b2" >tmp'
|
|
|
|
test_expect_success 'verify a+b?h=1+2 link' '
|
|
grep "/foo+bar/tree/a+b?h=1%2b2" tmp
|
|
'
|
|
|
|
test_done
|