xref: /freebsd/contrib/libarchive/unzip/test/test_t.c (revision dab59af3bcc7cb7ba01569d3044894b3e860ad56)
1 /*
2  * SPDX-License-Identifier: BSD-2-Clause
3  *
4  * Copyright (c) 2023 Adrian Vovk
5  * All rights reserved.
6  */
7 #include "test.h"
8 
9 /* Test t arg - Test zip contents */
10 DEFINE_TEST(test_t)
11 {
12 	const char *reffile = "test_basic.zip";
13 	int r;
14 
15 	extract_reference_file(reffile);
16 	r = systemf("%s -t %s >test.out 2>test.err", testprog, reffile);
17 	assertEqualInt(0, r);
18 	assertNonEmptyFile("test.out");
19 	assertEmptyFile("test.err");
20 }
21