Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/contrib/libarchive/unzip/test/test_version.c
39483 views
1
/*-
2
* SPDX-License-Identifier: BSD-2-Clause
3
*
4
* Copyright (c) 2003-2017 Tim Kientzle
5
* All rights reserved.
6
*/
7
#include "test.h"
8
9
/*
10
* Test that --version option works and generates reasonable output.
11
*/
12
13
DEFINE_TEST(test_version)
14
{
15
assertVersion(testprog, "bsdunzip");
16
}
17
18