Skip to content

Commit

Permalink
1725875616
Browse files Browse the repository at this point in the history
  • Loading branch information
Oleh Kulykov committed Sep 9, 2024
1 parent 3e448fa commit d96ec6c
Show file tree
Hide file tree
Showing 9 changed files with 20,793 additions and 20,800 deletions.
8 changes: 4 additions & 4 deletions cmake_tests/test_plzma_compress.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,16 +62,16 @@ int test_plzma_encode_xz_from_file_to_file_and_stream(void) {
inFilePath.appendRandomComponent();
switch (i) {
case 0:
PLZMA_TESTS_ASSERT(FILE__southpark_jpg_write_to_path(inFilePath.utf8()) == true)
PLZMA_TESTS_ASSERT(FILE__southpark_jpg_write_to_file(inFilePath.utf8()) == true)
break;
case 1:
PLZMA_TESTS_ASSERT(FILE__shutuptakemoney_jpg_write_to_path(inFilePath.utf8()) == true)
PLZMA_TESTS_ASSERT(FILE__shutuptakemoney_jpg_write_to_file(inFilePath.utf8()) == true)
break;
case 2:
PLZMA_TESTS_ASSERT(FILE__munchen_jpg_write_to_path(inFilePath.utf8()) == true)
PLZMA_TESTS_ASSERT(FILE__munchen_jpg_write_to_file(inFilePath.utf8()) == true)
break;
case 3:
PLZMA_TESTS_ASSERT(FILE__zombies_jpg_write_to_path(inFilePath.utf8()) == true)
PLZMA_TESTS_ASSERT(FILE__zombies_jpg_write_to_file(inFilePath.utf8()) == true)
break;
default:
break;
Expand Down
4 changes: 2 additions & 2 deletions cmake_tests/test_plzma_multivolume.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ int test_plzma_multivolume_test1(void) {

const Path secondPartPath = Path::tmpPath().appendingRandomComponent();
PLZMA_TESTS_ASSERT(secondPartPath.exists() == false)
FILE__18_7z_002_write_to_path(secondPartPath.utf8());
FILE__18_7z_002_write_to_file(secondPartPath.utf8());
PLZMA_TESTS_ASSERT(secondPartPath.exists() == true)
streams.push(makeSharedInStream(secondPartPath));
//streams.push(makeSharedInStream(FILE__18_7z_002_PTR, FILE__18_7z_002_SIZE));
Expand Down Expand Up @@ -153,7 +153,7 @@ int test_plzma_multivolume_test2(void) {
PLZMA_TESTS_ASSERT(secondPartPath.exception == nullptr)
PLZMA_TESTS_ASSERT(plzma_path_exists(&secondPartPath, nullptr) == false)
PLZMA_TESTS_ASSERT(secondPartPath.exception == nullptr)
FILE__18_7z_002_write_to_path(plzma_path_utf8_string(&secondPartPath));
FILE__18_7z_002_write_to_file(plzma_path_utf8_string(&secondPartPath));
PLZMA_TESTS_ASSERT(plzma_path_exists(&secondPartPath, nullptr) == true)
tmpInStream = plzma_in_stream_create_with_path(&secondPartPath);
PLZMA_TESTS_ASSERT(tmpInStream.exception == nullptr)
Expand Down
8,611 changes: 4,305 additions & 4,306 deletions test_files/file__18_7z_001.h

Large diffs are not rendered by default.

8,611 changes: 4,305 additions & 4,306 deletions test_files/file__18_7z_002.h

Large diffs are not rendered by default.

3,601 changes: 1,800 additions & 1,801 deletions test_files/file__18_7z_003.h

Large diffs are not rendered by default.

1,099 changes: 549 additions & 550 deletions test_files/file__munchen_jpg.h

Large diffs are not rendered by default.

4,185 changes: 2,092 additions & 2,093 deletions test_files/file__shutuptakemoney_jpg.h

Large diffs are not rendered by default.

5,083 changes: 2,541 additions & 2,542 deletions test_files/file__southpark_jpg.h

Large diffs are not rendered by default.

10,391 changes: 5,195 additions & 5,196 deletions test_files/file__zombies_jpg.h

Large diffs are not rendered by default.

0 comments on commit d96ec6c

Please sign in to comment.