1248590Smm/*-
2248590Smm * Copyright (c) 2003-2007 Tim Kientzle
3248590Smm * Copyright (c) 2012 Michihiro NAKAJIMA
4248590Smm * All rights reserved.
5248590Smm *
6248590Smm * Redistribution and use in source and binary forms, with or without
7248590Smm * modification, are permitted provided that the following conditions
8248590Smm * are met:
9248590Smm * 1. Redistributions of source code must retain the above copyright
10248590Smm *    notice, this list of conditions and the following disclaimer.
11248590Smm * 2. Redistributions in binary form must reproduce the above copyright
12248590Smm *    notice, this list of conditions and the following disclaimer in the
13248590Smm *    documentation and/or other materials provided with the distribution.
14248590Smm *
15248590Smm * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
16248590Smm * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17248590Smm * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18248590Smm * IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
19248590Smm * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20248590Smm * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21248590Smm * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22248590Smm * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23248590Smm * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24248590Smm * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25248590Smm */
26248590Smm#include "test.h"
27248590Smm__FBSDID("$FreeBSD$");
28248590Smm
29248590SmmDEFINE_TEST(test_option_lrzip)
30248590Smm{
31248590Smm	char *p;
32248590Smm	size_t s;
33248590Smm
34248590Smm	if (!canLrzip()) {
35248590Smm		skipping("lrzip is not supported on this platform");
36248590Smm		return;
37248590Smm	}
38248590Smm
39248590Smm	/* Create a file. */
40248590Smm	assertMakeFile("f", 0644, "a");
41248590Smm
42248590Smm	/* Archive it with lrzip compression. */
43248590Smm	assertEqualInt(0,
44248590Smm	    systemf("echo f | %s -o --lrzip >archive.out 2>archive.err",
45248590Smm	    testprog));
46248590Smm	p = slurpfile(&s, "archive.err");
47248590Smm	p[s] = '\0';
48248590Smm	/* Check that the archive file has an lzma signature. */
49248590Smm	p = slurpfile(&s, "archive.out");
50248590Smm	assert(s > 2);
51248590Smm	assertEqualMem(p, "LRZI\x00", 5);
52248590Smm}
53