瀏覽代碼

Initial revision

Paul Eggert 28 年之前
父節點
當前提交
9ef42b4fc0
共有 1 個文件被更改,包括 19 次插入0 次删除
  1. 19 0
      tests/append.sh

+ 19 - 0
tests/append.sh

@@ -0,0 +1,19 @@
+#! /bin/sh
+# Append was just not working.
+
+. ./preset
+. $srcdir/before
+
+set -e
+touch file1
+touch file2
+tar cf archive file1
+tar rf archive file2
+tar tf archive
+
+out="\
+file1
+file2
+"
+
+. $srcdir/after