소스 검색

New test case.

Sergey Poznyakoff 21 년 전
부모
커밋
da99cd963d
1개의 변경된 파일15개의 추가작업 그리고 0개의 파일을 삭제
  1. 15 0
      tests/recurse.sh

+ 15 - 0
tests/recurse.sh

@@ -0,0 +1,15 @@
+#! /bin/sh
+
+. ./preset
+. $srcdir/before
+
+set -e
+mkdir directory
+touch directory/file
+tar --create --file archive --no-recursion directory || exit 1
+tar tf archive
+
+out="directory/
+"
+
+. $srcdir/after