1
0
mirror of git://projects.qi-hardware.com/wernermisc.git synced 2024-11-15 06:29:22 +02:00

qpkg: test for the QPKG_ADDING leakage bug

- test/bug-adding: test if we get a false cyclic dependency because
  QPKG_ADDING isn't properly removed
- TODO: mention the problem
This commit is contained in:
Werner Almesberger 2010-11-22 09:28:34 -03:00
parent b89bcdfd93
commit 8d453d77c2
2 changed files with 46 additions and 0 deletions

View File

@ -21,6 +21,8 @@ Still left to do
Update: added detection of cyclic dependencies (in progress)
Update: added test for QPKG_ADDING cleanup bug
- implement keyword search
- consider also supporting the similar but not identical (parent ?) format

44
qpkg/test/bug-adding Executable file
View File

@ -0,0 +1,44 @@
#!/bin/sh
. ./Common
###############################################################################
#
# See the comment at the end of "resolve" in prereq.c for details.
#
qpkg_fail "BUG: we don't clean up QPKG_ADDING, yielding false errors" \
prereq A <<EOF
Package: D
Version: 0
Architecture: test
Conflicts: B (= 1)
Filename: D_0
Package: C
Version: 0
Architecture: test
Depends: D
Filename: C_0
Package: B
Version: 1
Architecture: test
Depends: C
Filename: B_1
Package: B
Version: 0
Architecture: test
Depends: C
Filename: B_0
Package: A
Version: 0
Architecture: test
Depends: B
Filename: A_0
EOF
expect <<EOF
package C version 0 has cyclic dependency
EOF