Skip to content

Commit 3bac717

Browse files
author
Oleh Kulykov
committed
1725885093
1 parent 93e7241 commit 3bac717

30 files changed

+191637
-191688
lines changed

cmake_tests/ctohex.c

Lines changed: 0 additions & 141 deletions
This file was deleted.

cmake_tests/test_plzma_compress.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,16 +62,16 @@ int test_plzma_encode_xz_from_file_to_file_and_stream(void) {
6262
inFilePath.appendRandomComponent();
6363
switch (i) {
6464
case 0:
65-
PLZMA_TESTS_ASSERT(FILE__southpark_jpg_write_to_path(inFilePath.utf8()) == true)
65+
PLZMA_TESTS_ASSERT(FILE__southpark_jpg_write_to_file(inFilePath.utf8()) == true)
6666
break;
6767
case 1:
68-
PLZMA_TESTS_ASSERT(FILE__shutuptakemoney_jpg_write_to_path(inFilePath.utf8()) == true)
68+
PLZMA_TESTS_ASSERT(FILE__shutuptakemoney_jpg_write_to_file(inFilePath.utf8()) == true)
6969
break;
7070
case 2:
71-
PLZMA_TESTS_ASSERT(FILE__munchen_jpg_write_to_path(inFilePath.utf8()) == true)
71+
PLZMA_TESTS_ASSERT(FILE__munchen_jpg_write_to_file(inFilePath.utf8()) == true)
7272
break;
7373
case 3:
74-
PLZMA_TESTS_ASSERT(FILE__zombies_jpg_write_to_path(inFilePath.utf8()) == true)
74+
PLZMA_TESTS_ASSERT(FILE__zombies_jpg_write_to_file(inFilePath.utf8()) == true)
7575
break;
7676
default:
7777
break;

cmake_tests/test_plzma_multivolume.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ int test_plzma_multivolume_test1(void) {
6868

6969
const Path secondPartPath = Path::tmpPath().appendingRandomComponent();
7070
PLZMA_TESTS_ASSERT(secondPartPath.exists() == false)
71-
FILE__18_7z_002_write_to_path(secondPartPath.utf8());
71+
FILE__18_7z_002_write_to_file(secondPartPath.utf8());
7272
PLZMA_TESTS_ASSERT(secondPartPath.exists() == true)
7373
streams.push(makeSharedInStream(secondPartPath));
7474
//streams.push(makeSharedInStream(FILE__18_7z_002_PTR, FILE__18_7z_002_SIZE));
@@ -153,7 +153,7 @@ int test_plzma_multivolume_test2(void) {
153153
PLZMA_TESTS_ASSERT(secondPartPath.exception == nullptr)
154154
PLZMA_TESTS_ASSERT(plzma_path_exists(&secondPartPath, nullptr) == false)
155155
PLZMA_TESTS_ASSERT(secondPartPath.exception == nullptr)
156-
FILE__18_7z_002_write_to_path(plzma_path_utf8_string(&secondPartPath));
156+
FILE__18_7z_002_write_to_file(plzma_path_utf8_string(&secondPartPath));
157157
PLZMA_TESTS_ASSERT(plzma_path_exists(&secondPartPath, nullptr) == true)
158158
tmpInStream = plzma_in_stream_create_with_path(&secondPartPath);
159159
PLZMA_TESTS_ASSERT(tmpInStream.exception == nullptr)

libplzma.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1615,4 +1615,3 @@ LIBPLZMA_C_API(bool) plzma_encoder_compress(plzma_encoder * LIBPLZMA_NONNULL enc
16151615
LIBPLZMA_C_API(void) plzma_encoder_release(plzma_encoder * LIBPLZMA_NONNULL encoder);
16161616

16171617
#endif // !__LIBPLZMA_H__
1618-

0 commit comments

Comments
 (0)