Adding upstream version 2.25.15.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
This commit is contained in:
parent
10737b110a
commit
b543f2e88d
485 changed files with 191459 additions and 0 deletions
5
test/sadt/README
Normal file
5
test/sadt/README
Normal file
|
@ -0,0 +1,5 @@
|
|||
Each directory here is a fake Debian package with autopkgtests
|
||||
|
||||
To create the basic structure for a new test case, run the "new" script, e.g.
|
||||
|
||||
$ ./new my-test-case
|
0
test/sadt/comma-separated-restrictions/debian/control
Normal file
0
test/sadt/comma-separated-restrictions/debian/control
Normal file
|
@ -0,0 +1,2 @@
|
|||
Tests: test
|
||||
Restrictions: needs-recommends, allow-stderr
|
1
test/sadt/comma-separated-restrictions/debian/tests/test
Executable file
1
test/sadt/comma-separated-restrictions/debian/tests/test
Executable file
|
@ -0,0 +1 @@
|
|||
#!/bin/true
|
0
test/sadt/comma-separated-tests/debian/control
Normal file
0
test/sadt/comma-separated-tests/debian/control
Normal file
1
test/sadt/comma-separated-tests/debian/tests/control
Normal file
1
test/sadt/comma-separated-tests/debian/tests/control
Normal file
|
@ -0,0 +1 @@
|
|||
Tests: test1, test2
|
1
test/sadt/comma-separated-tests/debian/tests/test1
Executable file
1
test/sadt/comma-separated-tests/debian/tests/test1
Executable file
|
@ -0,0 +1 @@
|
|||
#!/bin/true
|
2
test/sadt/comma-separated-tests/debian/tests/test2
Executable file
2
test/sadt/comma-separated-tests/debian/tests/test2
Executable file
|
@ -0,0 +1,2 @@
|
|||
#!/bin/true
|
||||
|
0
test/sadt/fails/debian/control
Normal file
0
test/sadt/fails/debian/control
Normal file
1
test/sadt/fails/debian/tests/control
Normal file
1
test/sadt/fails/debian/tests/control
Normal file
|
@ -0,0 +1 @@
|
|||
Tests: fails
|
1
test/sadt/fails/debian/tests/fails
Executable file
1
test/sadt/fails/debian/tests/fails
Executable file
|
@ -0,0 +1 @@
|
|||
#!/bin/false
|
0
test/sadt/flaky/debian/control
Normal file
0
test/sadt/flaky/debian/control
Normal file
2
test/sadt/flaky/debian/tests/control
Normal file
2
test/sadt/flaky/debian/tests/control
Normal file
|
@ -0,0 +1,2 @@
|
|||
Tests: flaky-succeeds flaky-fails
|
||||
Restrictions: flaky
|
1
test/sadt/flaky/debian/tests/flaky-fails
Executable file
1
test/sadt/flaky/debian/tests/flaky-fails
Executable file
|
@ -0,0 +1 @@
|
|||
#!/bin/false
|
1
test/sadt/flaky/debian/tests/flaky-succeeds
Executable file
1
test/sadt/flaky/debian/tests/flaky-succeeds
Executable file
|
@ -0,0 +1 @@
|
|||
#!/bin/true
|
0
test/sadt/ignore-udebs/debian/control
Normal file
0
test/sadt/ignore-udebs/debian/control
Normal file
1
test/sadt/ignore-udebs/debian/tests/control
Normal file
1
test/sadt/ignore-udebs/debian/tests/control
Normal file
|
@ -0,0 +1 @@
|
|||
Tests: ignore-udebs
|
9
test/sadt/new
Executable file
9
test/sadt/new
Executable file
|
@ -0,0 +1,9 @@
|
|||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
|
||||
for sample in $@; do
|
||||
mkdir -p "$sample"/debian/tests
|
||||
touch "$sample/debian/control"
|
||||
echo "Tests: $sample" > "$sample"/debian/tests/control
|
||||
done
|
0
test/sadt/passes/debian/control
Normal file
0
test/sadt/passes/debian/control
Normal file
1
test/sadt/passes/debian/tests/control
Normal file
1
test/sadt/passes/debian/tests/control
Normal file
|
@ -0,0 +1 @@
|
|||
Tests: test
|
1
test/sadt/passes/debian/tests/test
Executable file
1
test/sadt/passes/debian/tests/test
Executable file
|
@ -0,0 +1 @@
|
|||
#!/bin/true
|
0
test/sadt/skippable/debian/control
Normal file
0
test/sadt/skippable/debian/control
Normal file
2
test/sadt/skippable/debian/tests/control
Normal file
2
test/sadt/skippable/debian/tests/control
Normal file
|
@ -0,0 +1,2 @@
|
|||
Tests: skipped
|
||||
Restrictions: skippable
|
2
test/sadt/skippable/debian/tests/skipped
Executable file
2
test/sadt/skippable/debian/tests/skipped
Executable file
|
@ -0,0 +1,2 @@
|
|||
#!/bin/sh
|
||||
exit 77
|
0
test/sadt/space-separated-restrictions/debian/control
Normal file
0
test/sadt/space-separated-restrictions/debian/control
Normal file
|
@ -0,0 +1,2 @@
|
|||
Tests: test
|
||||
Restrictions: needs-recommends allow-stderr
|
1
test/sadt/space-separated-restrictions/debian/tests/test
Executable file
1
test/sadt/space-separated-restrictions/debian/tests/test
Executable file
|
@ -0,0 +1 @@
|
|||
#!/bin/true
|
0
test/sadt/space-separated-tests/debian/control
Normal file
0
test/sadt/space-separated-tests/debian/control
Normal file
1
test/sadt/space-separated-tests/debian/tests/control
Normal file
1
test/sadt/space-separated-tests/debian/tests/control
Normal file
|
@ -0,0 +1 @@
|
|||
Tests: test1 test2
|
1
test/sadt/space-separated-tests/debian/tests/test1
Executable file
1
test/sadt/space-separated-tests/debian/tests/test1
Executable file
|
@ -0,0 +1 @@
|
|||
#!/bin/true
|
2
test/sadt/space-separated-tests/debian/tests/test2
Executable file
2
test/sadt/space-separated-tests/debian/tests/test2
Executable file
|
@ -0,0 +1,2 @@
|
|||
#!/bin/true
|
||||
|
0
test/sadt/superficial-fails/debian/control
Normal file
0
test/sadt/superficial-fails/debian/control
Normal file
2
test/sadt/superficial-fails/debian/tests/control
Normal file
2
test/sadt/superficial-fails/debian/tests/control
Normal file
|
@ -0,0 +1,2 @@
|
|||
Tests: test
|
||||
Restrictions: superficial
|
1
test/sadt/superficial-fails/debian/tests/test
Executable file
1
test/sadt/superficial-fails/debian/tests/test
Executable file
|
@ -0,0 +1 @@
|
|||
#!/bin/false
|
0
test/sadt/superficial/debian/control
Normal file
0
test/sadt/superficial/debian/control
Normal file
2
test/sadt/superficial/debian/tests/control
Normal file
2
test/sadt/superficial/debian/tests/control
Normal file
|
@ -0,0 +1,2 @@
|
|||
Tests: test
|
||||
Restrictions: superficial
|
1
test/sadt/superficial/debian/tests/test
Executable file
1
test/sadt/superficial/debian/tests/test
Executable file
|
@ -0,0 +1 @@
|
|||
#!/bin/true
|
0
test/sadt/test-command/debian/control
Normal file
0
test/sadt/test-command/debian/control
Normal file
1
test/sadt/test-command/debian/tests/control
Normal file
1
test/sadt/test-command/debian/tests/control
Normal file
|
@ -0,0 +1 @@
|
|||
Test-Command: echo 'Test-Command is supported'
|
0
test/sadt/tests-directory/debian/control
Normal file
0
test/sadt/tests-directory/debian/control
Normal file
2
test/sadt/tests-directory/debian/tests/control
Normal file
2
test/sadt/tests-directory/debian/tests/control
Normal file
|
@ -0,0 +1,2 @@
|
|||
Tests: test
|
||||
Tests-Directory: foo
|
1
test/sadt/tests-directory/foo/test
Executable file
1
test/sadt/tests-directory/foo/test
Executable file
|
@ -0,0 +1 @@
|
|||
#!/bin/true
|
0
test/sadt/unskippable/debian/control
Normal file
0
test/sadt/unskippable/debian/control
Normal file
1
test/sadt/unskippable/debian/tests/control
Normal file
1
test/sadt/unskippable/debian/tests/control
Normal file
|
@ -0,0 +1 @@
|
|||
Tests: unskippable
|
2
test/sadt/unskippable/debian/tests/unskippable
Executable file
2
test/sadt/unskippable/debian/tests/unskippable
Executable file
|
@ -0,0 +1,2 @@
|
|||
#!/bin/sh
|
||||
exit 77
|
0
test/sadt/unskipped/debian/control
Normal file
0
test/sadt/unskipped/debian/control
Normal file
2
test/sadt/unskipped/debian/tests/control
Normal file
2
test/sadt/unskipped/debian/tests/control
Normal file
|
@ -0,0 +1,2 @@
|
|||
Tests: fails
|
||||
Restrictions: skippable
|
1
test/sadt/unskipped/debian/tests/fails
Executable file
1
test/sadt/unskipped/debian/tests/fails
Executable file
|
@ -0,0 +1 @@
|
|||
#!/bin/false
|
Loading…
Add table
Add a link
Reference in a new issue