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 p arg - Print to stdout */ 10 DEFINE_TEST(test_p) 11 { 12 const char *reffile = "test_basic.zip"; 13 int r; 14 15 extract_reference_file(reffile); 16 r = systemf("%s -p %s >test.out 2>test.err", testprog, reffile); 17 assertEqualInt(0, r); 18 assertTextFileContents("contents a\ncontents b\ncontents c\ncontents CAPS\n", "test.out"); 19 assertEmptyFile("test.err"); 20 } 21