mirror of
git://projects.qi-hardware.com/wernermisc.git
synced 2024-11-15 14:10:38 +02:00
8d453d77c2
- test/bug-adding: test if we get a false cyclic dependency because QPKG_ADDING isn't properly removed - TODO: mention the problem
45 lines
669 B
Bash
Executable File
45 lines
669 B
Bash
Executable File
#!/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
|