ソースを参照

Initial revision

Paul Eggert 28 年 前
コミット
d7010d945a
1 ファイル変更13 行追加0 行削除
  1. 13 0
      tests/extrac01.sh

+ 13 - 0
tests/extrac01.sh

@@ -0,0 +1,13 @@
+#! /bin/sh
+# There was a diagnostic when directory already exists.
+
+. ./preset
+. $srcdir/before
+
+set -e
+mkdir directory
+touch directory/file
+tar cf archive directory || exit 1
+tar xf archive || exit 1
+
+. $srcdir/after