소스 검색

test-indexes.sh: quiesce apt-get source; we know that we cannot verify package signatures

martin@piware.de 16 년 전
부모
커밋
594bfe6a9f
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      test/test-indexes.sh

+ 2 - 1
test/test-indexes.sh

@@ -103,7 +103,8 @@ check_install() {
 # test apt-get source
 check_get_source() {
     echo "--- apt-get source"
-    $APT_GET source $TEST_PKG
+    # quiesce: it'll complain about not being able to verify the signature
+    $APT_GET source $TEST_PKG >/dev/null 2>&1
     test -f $TEST_SRC_*.dsc
     test -d $TEST_SRC-*
     rm -r $TEST_SRC*