mirror of
https://github.com/libarchive/libarchive.git
synced 2026-01-28 02:14:54 +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>
19 lines
372 B
C
19 lines
372 B
C
/*-
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*
|
|
* Copyright (c) 2014 Mike Kazantsev
|
|
* All rights reserved.
|
|
*/
|
|
#include "test.h"
|
|
|
|
DEFINE_TEST(test_error)
|
|
{
|
|
const char *reffile = "test_expand.error";
|
|
|
|
assertFileNotExists(reffile);
|
|
assert(0 != systemf("%s %s >test.out 2>test.err", testprog, reffile));
|
|
|
|
assertEmptyFile("test.out");
|
|
assertNonEmptyFile("test.err");
|
|
}
|