Disable the tests that don't work with minimal/do.
...only when running under minimal/do, of course. The tests in question mostly fail because they're testing particular dependency-related behaviour, and minimal/do doesn't support dependencies, so naturally it doesn't work.
This commit is contained in:
parent
a75555e7a8
commit
b9987433c9
17 changed files with 42 additions and 10 deletions
|
|
@ -1,9 +1,12 @@
|
|||
#!/bin/sh
|
||||
#echo "Flushing redo cache..." >&2
|
||||
(
|
||||
echo ".timeout 5000"
|
||||
echo "pragma synchronous = off;"
|
||||
echo "update Files set checked_runid=checked_runid-1, " \
|
||||
" changed_runid=changed_runid-1, " \
|
||||
" failed_runid=failed_runid-1;"
|
||||
) | sqlite3 "$REDO_BASE/.redo/db.sqlite3"
|
||||
if [ -z "$DO_BUILT" ]; then
|
||||
(
|
||||
echo ".timeout 5000"
|
||||
echo "pragma synchronous = off;"
|
||||
echo "update Files set checked_runid=checked_runid-1, " \
|
||||
" changed_runid=changed_runid-1, " \
|
||||
" failed_runid=failed_runid-1;"
|
||||
) | sqlite3 "$REDO_BASE/.redo/db.sqlite3"
|
||||
fi
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue