]> git.ipfire.org Git - thirdparty/libarchive.git/commitdiff
Add lz4 test for bsdcat.
authorMichihiro NAKAJIMA <ggcueroad@gmail.com>
Mon, 18 Aug 2014 13:07:48 +0000 (22:07 +0900)
committerMichihiro NAKAJIMA <ggcueroad@gmail.com>
Mon, 18 Aug 2014 13:07:48 +0000 (22:07 +0900)
 - add test utility function canLz4()
 - fix test_write_filter_lz4 to use canLz4()

13 files changed:
Makefile.am
cat/test/CMakeLists.txt
cat/test/main.c
cat/test/test.h
cat/test/test_empty.lz4.uu [new file with mode: 0644]
cat/test/test_empty_lz4.c [new file with mode: 0644]
cpio/test/main.c
cpio/test/test.h
libarchive/test/main.c
libarchive/test/test.h
libarchive/test/test_write_filter_lz4.c
tar/test/main.c
tar/test/test.h

index 0b4c27c98584a94b6d5eab12d6ad4a30aba00c6c..35f9e867e119ca1339cc4c042af46543b42d6cc4 100644 (file)
@@ -1142,6 +1142,7 @@ bsdcat_test_SOURCES= \
        cat/test/test.h \
        cat/test/test_0.c \
        cat/test/test_empty_gz.c \
+       cat/test/test_empty_lz4.c \
        cat/test/test_empty_xz.c \
        cat/test/test_error.c \
        cat/test/test_error_mixed.c \
@@ -1175,6 +1176,7 @@ endif
 bsdcat_test_EXTRA_DIST= \
        cat/test/list.h \
        cat/test/test_empty.gz.uu \
+       cat/test/test_empty.lz4.uu \
        cat/test/test_empty.xz.uu \
        cat/test/test_expand.Z.uu \
        cat/test/test_expand.bz2.uu \
index f86c7bf39131a18c4b011136517e09e2dcb36028..86ae6927500c84f4084932e4634e427e7b9acb64 100644 (file)
@@ -10,6 +10,7 @@ IF(ENABLE_CAT AND ENABLE_TEST)
     test.h
     test_0.c
     test_empty_gz.c
+    test_empty_lz4.c
     test_empty_xz.c
     test_error.c
     test_error_mixed.c
index 649e0099255d69f52686cfc1926fbc45423575aa..22d211f929195a3bdad3bf2a3a4f1460c9837f64 100644 (file)
@@ -1931,6 +1931,21 @@ canLrzip(void)
        return (value);
 }
 
+/*
+ * Can this platform run the lz4 program?
+ */
+int
+canLz4(void)
+{
+       static int tested = 0, value = 0;
+       if (!tested) {
+               tested = 1;
+               if (systemf("lz4 -V %s", redirectArgs) == 0)
+                       value = 1;
+       }
+       return (value);
+}
+
 /*
  * Can this platform run the lzip program?
  */
index fa3e9c57ecfd984b4542478fea603385bcc6efde..68473851cbc298b981bd12a43950390f3529e5db 100644 (file)
@@ -281,6 +281,9 @@ int canGzip(void);
 /* Return true if this platform can run the "lrzip" program. */
 int canLrzip(void);
 
+/* Return true if this platform can run the "lz4" program. */
+int canLz4(void);
+
 /* Return true if this platform can run the "lzip" program. */
 int canLzip(void);
 
diff --git a/cat/test/test_empty.lz4.uu b/cat/test/test_empty.lz4.uu
new file mode 100644 (file)
index 0000000..8491afb
--- /dev/null
@@ -0,0 +1,4 @@
+begin 644 test_empty.lz4
+/!")-&&1PN0`````%7<P"
+`
+end
diff --git a/cat/test/test_empty_lz4.c b/cat/test/test_empty_lz4.c
new file mode 100644 (file)
index 0000000..9d98e9c
--- /dev/null
@@ -0,0 +1,41 @@
+/*-
+ * Copyright (c) 2014 Sebastian Freundt
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
+ * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+ * IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
+ * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+ * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+#include "test.h"
+
+DEFINE_TEST(test_empty_lz4)
+{
+       const char *reffile = "test_empty.lz4";
+       int f;
+
+       extract_reference_file(reffile);
+       f = systemf("%s %s >test.out 2>test.err", testprog, reffile);
+       if (f == 0 || canLz4()) {
+               assertEqualInt(0, f);
+               assertEmptyFile("test.out");
+               assertEmptyFile("test.err");
+       } else {
+               skipping("It seems lz4 is not supported on this platform");
+       }
+}
index 2b5ab0cc830e40ae27dfb80bdbede95a0616599e..d4ed509a90beea7b05916c86d177b613d5033a8f 100644 (file)
@@ -1931,6 +1931,21 @@ canLrzip(void)
        return (value);
 }
 
+/*
+ * Can this platform run the lz4 program?
+ */
+int
+canLz4(void)
+{
+       static int tested = 0, value = 0;
+       if (!tested) {
+               tested = 1;
+               if (systemf("lz4 -V %s", redirectArgs) == 0)
+                       value = 1;
+       }
+       return (value);
+}
+
 /*
  * Can this platform run the lzip program?
  */
index d645cad86a2d6d50556e10c7a4c60ec6c3e34866..9898be65c10c2bba69a64bdcf010ffcb65a760e5 100644 (file)
@@ -279,6 +279,9 @@ int canGzip(void);
 /* Return true if this platform can run the "lrzip" program. */
 int canLrzip(void);
 
+/* Return true if this platform can run the "lz4" program. */
+int canLz4(void);
+
 /* Return true if this platform can run the "lzip" program. */
 int canLzip(void);
 
index 28afb9d6e7278191f8918e23d8cb557cfc73f6c6..99c5933996a660d43b0fbbba010c84fd44776c84 100644 (file)
@@ -1937,6 +1937,21 @@ canLrzip(void)
        return (value);
 }
 
+/*
+ * Can this platform run the lz4 program?
+ */
+int
+canLz4(void)
+{
+       static int tested = 0, value = 0;
+       if (!tested) {
+               tested = 1;
+               if (systemf("lz4 -V %s", redirectArgs) == 0)
+                       value = 1;
+       }
+       return (value);
+}
+
 /*
  * Can this platform run the lzip program?
  */
index aa1df32f1d2079de5762eca649b8f4173da918bc..73e16eaf907438a92537ddf29cd7e974fcfeda0c 100644 (file)
@@ -281,6 +281,9 @@ int canRunCommand(const char *);
 /* Return true if this platform can run the "lrzip" program. */
 int canLrzip(void);
 
+/* Return true if this platform can run the "lz4" program. */
+int canLz4(void);
+
 /* Return true if this platform can run the "lzip" program. */
 int canLzip(void);
 
index 2c20b0d7a9cff9fe3d1e5ba3d77012206e610cd5..ae4fc67f38ff9e6d46c35ca303a7646d3eb5ff93 100644 (file)
@@ -44,7 +44,7 @@ DEFINE_TEST(test_write_filter_lz4)
        assert((a = archive_write_new()) != NULL);
        r = archive_write_add_filter_lz4(a);
        if (r != ARCHIVE_OK) {
-               if (canLzop() && r == ARCHIVE_WARN)
+               if (canLz4() && r == ARCHIVE_WARN)
                        use_prog = 1;
                else {
                        skipping("lz4 writing not supported on this platform");
@@ -281,7 +281,7 @@ test_options(const char *options)
        assert((a = archive_write_new()) != NULL);
        r = archive_write_add_filter_lz4(a);
        if (r != ARCHIVE_OK) {
-               if (canLzop() && r == ARCHIVE_WARN)
+               if (canLz4() && r == ARCHIVE_WARN)
                        use_prog = 1;
                else {
                        skipping("lz4 writing not supported on this platform");
index 455921ba2a9ef8185ed01dfe0df9641dcde4850a..bef18f252ab0627a442dd9d773c4693a1c849374 100644 (file)
@@ -1932,6 +1932,21 @@ canLrzip(void)
        return (value);
 }
 
+/*
+ * Can this platform run the lz4 program?
+ */
+int
+canLz4(void)
+{
+       static int tested = 0, value = 0;
+       if (!tested) {
+               tested = 1;
+               if (systemf("lz4 -V %s", redirectArgs) == 0)
+                       value = 1;
+       }
+       return (value);
+}
+
 /*
  * Can this platform run the lzip program?
  */
index fa3e9c57ecfd984b4542478fea603385bcc6efde..68473851cbc298b981bd12a43950390f3529e5db 100644 (file)
@@ -281,6 +281,9 @@ int canGzip(void);
 /* Return true if this platform can run the "lrzip" program. */
 int canLrzip(void);
 
+/* Return true if this platform can run the "lz4" program. */
+int canLz4(void);
+
 /* Return true if this platform can run the "lzip" program. */
 int canLzip(void);