mirror of
https://github.com/libarchive/libarchive.git
synced 2026-01-31 03:45:41 +00:00
This is the first part of converting the project to use SPDX license identifiers instead using the verbose license text. The patches are semi-automated and I've went through manually to ensure no license changes were made. That said, I would welcome another pair of eyes, since I am only human. See https://github.com/libarchive/libarchive/issues/2298 --------- Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> (cherry picked from commit 6287b99eb78ad4ffada536f75c55902208234425)
21 lines
697 B
C
21 lines
697 B
C
/*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*
|
|
* Copyright (c) 2003-2006 Tim Kientzle
|
|
* All rights reserved.
|
|
*/
|
|
|
|
/* Every test program should #include "test.h" as the first thing. */
|
|
|
|
#define KNOWNREF "test_expand.Z.uu"
|
|
#define ENVBASE "BSDCAT" /* Prefix for environment variables. */
|
|
#define PROGRAM "bsdcat" /* Name of program being tested. */
|
|
#define PROGRAM_ALIAS "cat" /* Generic alias for program */
|
|
#undef LIBRARY /* Not testing a library. */
|
|
#undef EXTRA_DUMP /* How to dump extra data */
|
|
#undef EXTRA_ERRNO /* How to dump errno */
|
|
/* How to generate extra version info. */
|
|
#define EXTRA_VERSION (systemf("%s --version", testprog) ? "" : "")
|
|
|
|
#include "test_common.h"
|